Found 9053 Articles for Front End Technology

What is the difference between for...of and for...in statements in JavaScript?

Ankitha Reddy
Updated on 15-Jun-2020 12:16:31

165 Views

for…in loopThe “for...in” loop is used to loop through an object's properties.Here’s the syntax −Syntaxfor (variablename in object) { statement or block to execute }You can try to run the following example to implement ‘for-in’ loop. It prints the web browser’s Navigator objectExampleLive Demo var aProperty; document.write("Navigator Object Properties "); for (aProperty in navigator) { document.write(aProperty); document.write(""); } document.write ("Exiting from the loop!"); for…of loopThe “for…of” loop is used to loop through iterable objects, which includes Map, Array, arguments, etc.SyntaxHere’s the syntax −for (variablename of iterable){ statement or block to execute }ExampleHere’s an example showing ... Read More

How to call a JavaScript function on submit form?

mkotla
Updated on 30-Jul-2019 22:30:21

14K+ Views

The onsubmit event occurs when you try to submit a form. You can put your form validation against this event type. The following example shows how to use onsubmit. Here we are calling a validate() function before submitting a form data to the webserver. If validate() function returns true, the form will be submitted, otherwise it will not submit the data.     The HTML code snippet. …

What does a +function() { } notation do in JavaScript?

V Jyothi
Updated on 03-Oct-2019 06:40:23

313 Views

The +function() {} notation is primarily used to force the parser to treat whatever follows the + as an expression. This is used for functions that are invoked immediately, for example,+function() { alert("Demo!"); }();However, + before a function is one of the symbol. You can add other options also like !, -, ~, also. Parentheses can also be used as shown below:(function() { alert("Demo!"); })();You can also use it like this:(function() { alert("Demo!"); }());

What are HTML 5 Standard Events?

Giri Raju
Updated on 16-Jun-2020 11:38:33

441 Views

When a user visits your website, they do things like click on text and images and given links, hover over things etc. These are examples of what JavaScript calls events.We can write our event handlers in JavaScript or VBScript and you can specify these event handlers as a value of event tag attribute. The HTML5 specification defines various event attributes as listed below −AttributeValueDescriptionOfflinescriptTriggers when the document goes offlineOnabortscriptTriggers on an abort eventonafterprintscriptTriggers after the document is printedonbeforeonloadscriptTriggers before the document loadsonbeforeprintscriptTriggers before the document is printedOnblurscriptTriggers when the window loses focusOncanplayscriptTriggers when media can start play but might to ... Read More

How to provide new line in JavaScript alert box?

Rishi Rathor
Updated on 08-Jan-2020 10:38:08

506 Views

To add a new line in JavaScript alert box, use the “”:alert("Line One Line Two");ExampleYou can try to run the following code add a new line in an alert box in JavaScript:Live Demo                                         Click the following button to see the result:                          

How to call a JavaScript function from an onmouseout event?

Sreemaha
Updated on 08-Jan-2020 10:37:23

241 Views

The onmouseout triggers when you move your mouse out from that element.ExampleYou can try to run the following example to learn how to call a JavaScript function from onmouseout eventLive Demo                                         Bring your mouse inside the division to see the result:                 This is inside the division          

How to call a JavaScript function from an onmouseover event?

varma
Updated on 08-Jan-2020 10:36:14

1K+ Views

The onmouseover event triggers when you bring your mouse over any element.ExampleYou can try to run the following example to learn how to call a JavaScript function from onmouseover eventLive Demo                                         Bring your mouse inside the division to see the result:                 This is inside the division          

How to call a JavaScript function from an onsubmit event?

usharani
Updated on 16-Jun-2020 11:37:14

2K+ Views

The onsubmit event occurs when you try to submit a form. You can put your form validation against this event type. The following example shows how to use onsubmit. Here, we are calling a validate() function before submitting a form data to the webserver. If validate() function returns true, the form will be submitted, otherwise it will not submit the data.     The HTML    .......    

How to show prompt dialog box using JavaScript?

Nancy Den
Updated on 08-Jan-2020 10:34:24

389 Views

The prompt dialog box is very useful when you want to pop-up a text box to get user input. Thus, it enables you to interact with the user. The user needs to fill in the field and then click OK.This dialog box is displayed using a method called prompt() which takes two parameters: (i) a label which you want to display in the text box and (ii) a default string to display in the text box.This dialog box has two buttons: OK and Cancel. If the user clicks the OK button, the window method prompt() will return the entered value ... Read More

How do you get a timestamp in JavaScript?

Shubham Vora
Updated on 25-Jul-2022 08:39:25

4K+ Views

In this tutorial, we will learn to get a timestamp in JavaScript. It never happens that software developers or application developers don’t require to play with date and time. In many situations, they are required to play with date and timestamp. For example, to show the time on the user’s dashboard, save the time of an operation in the database.Now, let’s understand what the timestamp is? The timestamp is the total number of milliseconds from the 1st January 1970 from when UNIX epochs begin. Using the timestamp, we can extract the date, day, year, month, hours, minutes, second, milliseconds, etc.So, ... Read More

Advertisements