Found 9321 Articles for Object Oriented Programming

How do I clear the usage of setInterval()?

George John
Updated on 23-Jun-2020 12:58:39

124 Views

The setInterval() method is used evaluate an expression at specified intervals. This function calls function after every duration milliseconds. This goes for unlimited times. Let’s see an example −It triggers alert(‘Hello’) after every 2000 milliseconds, not only once.setInterval(function() { alert('Hello');}, 2000);To clear the usage of setInterval(), use the window.clearInterval() and set the parameter as the ID, likewindow.setInterval();

Does use of anonymous functions affect performance?

Daniol Thomas
Updated on 23-Jun-2020 12:58:03

234 Views

The usage of anonymous functions affect performance is the sense, you need to create a new function object at each iteration. Anonymous functions are always loaded using a variable name. Anonymous, as the name suggests, allows creating a function without any names identifier. It can be used as an argument to other functions. Call them using a variable name −ExampleThis is how JavaScript anonymous functions can be used −var func = function() {    alert(‘This is anonymous'); } func();Here’s an example −//anonymous function var a = function() {    return 5; }

Is their JavaScript scroll event for iPhone/iPad?

Abhinanda Shri
Updated on 23-Jun-2020 12:57:22

217 Views

Yes, iOS capture onscroll events for a scroll. This is called one-finger events. What the user is tapping or touching decides whether an event is generated or not.Here is panning gesture,Image credit − AppleIt can also be touch and hold gesture,Image credit − Apple

How to set the order of the flexible item, relative to the rest with JavaScript?

Ankitha Reddy
Updated on 30-Jul-2019 22:30:21

75 Views

To set the order of the flexible item, relative to the rest of JavaScript, use the order property. You can try to run the following code to implement order property − Example Live Demo #box { border: 1px solid #000000; width: 420px; height: 150px; display: flex; } #box div { height: 80px; width: 80px; } DIV1 DIV2 DIV3 Set function display() { document.getElementById("myID1").style.order = "3"; document.getElementById("myID2").style.order = "1"; document.getElementById("myID3").style.order = "2"; }

How to inject JavaScript in WebBrowser control?

Arjun Thakur
Updated on 23-Jun-2020 12:59:49

1K+ Views

To inject JavaScript in WebBrowser control, use the following steps − Firstly, create a Windows Forms application in Visual Studio. Now, drag a WebBrowser control to the form Set the Url property. Right-click the project, choose to Add reference... → COM → Type Libraries Select "Microsoft HTML Object Library"  Add the following code to inject JavaScript.private void myWebBrowser(object sender, WebBrowserDocumentCompletedEventArgs e){      // head element    HtmlElement hElement = weBrowser.Document.GetElementsByTagName("head")[0];    // script element    HtmlElement sElement = weBrowser.Document.CreateElement("script");    IHTMLScriptElement val = (IHTMLScriptElement)sElement.DomElement;    element.text = "function sayHello() {       alert('Weclome')    }";    hElement.AppendChild(sElement);    weBrowser.Document.InvokeScript("How you doing?"); }

How to set the alignment between the items inside a flexible container when the items do not use all available space with JavaScript?

Krantik Chavan
Updated on 23-Jun-2020 13:00:21

58 Views

Use the alignContent property in JavaScript to set the alignment between the items inside a flexible container.ExampleYou can try to run the following code to implement alignContent property in JavaScript −                    #box {             border: 1px solid #000000;             width: 240px;             height: 150px;             flex-flow: row wrap;             align-content: space-around;             display: flex;          }          #box div {             height: 80px;             width: 80px;          }                              DIV1          DIV2          DIV3             Set                function display() {             document.getElementById("box").style.alignContent = "space-between";          }          

How to set the minimum number of lines for an element that must be visible at the top of a page in JavaScript?

George John
Updated on 23-Jun-2020 13:02:06

86 Views

Use the orphans property in JavaScript to set the minimum number of lines for an element that must be visible at the top of a page. You can try to run the following code to learn how to implement orphans property −document.getElementById("p").style.orphansThis is how you can return the orphans property −var res = object.style.orphans;This is how to set the orphans property −object.style.orphans='number|initial|inherit'

How to use JavaScript Object.defineProperty?

Abhinanda Shri
Updated on 23-Jun-2020 13:01:23

137 Views

If you want to define a new or modify a property on an object, then use the Object.defineProperty in JavaScript. Use the property like the following −Object.defineProperty(obj, prop, descriptor)The following are the parameters −obj – Property is defined on this object. prop – Name of the property descriptor  − The descriptor for the propertyExampleYou can try to run the following code to learn how to implement Object.defineProperty in JavaScript −                    const obj = {};          Object.defineProperty(obj, 'prop', {             value: 20,             writable: false          });          obj.prop = 10;          document.write(obj.prop);          

How to set the minimum number of lines for an element that must be left at the bottom of a page when a page break occurs inside an element with JavaScript?

Srinivas Gorla
Updated on 23-Jun-2020 12:33:48

82 Views

Use the orphans property in JavaScript to set the minimum number of lines for an element that should be left at the bottom of a page when a page break occurs inside an element with JavaScript.You can return the orphans property like this −var res = object.style.orphansSet the orphans property like this −object.style.orphans = 'number|initial|inherit'The following are the property values shown above −number − Specify the minimum number of visible lines.Initial − Set property to its defaultInherit − Inherits property from the parent element

How to set the page-break behavior before an element with JavaScript?

Nancy Den
Updated on 23-Jun-2020 12:32:23

405 Views

Use the pageBreakBefore property in JavaScript to set the page-break behavior before an element. Use the always property to insert a page break before an element.Note − The changes would be visible while printing or viewing the print preview.ExampleYou can try to run the following code to return the page-break behavior before an element with JavaScript −           Heading 1       This is demo text.       This is demo text.       This if footer text.       Set page-break                      function display() {             document.getElementById("myFooter").style.pageBreakBefore = "always";          }          

Advertisements