Found 10711 Articles for Web Development

How to bind events on dynamically created elements using jQuery?

Alex Onsman
Updated on 14-Feb-2020 12:27:57

2K+ Views

To bind events on dynamically created elements, you need to load dynamically. You can try to run the following code to learn how to bind events on dynamically created elements. Here, we will generate a new list item on button click.ExampleLive Demo $(document).ready(function(){     $("button").click(function(){       $("ul").append("new item ×");       });       $(document).on("click", "a.del" , function() {         $(this).parent().remove();     }); });     Add     Click the above button to dynamically add new list items. You can remove it later.             item    

How to debug JavaScript/jQuery event bindings with Firebug?

Alex Onsman
Updated on 14-Feb-2020 11:31:29

195 Views

Let’s say an event handler is attached to your element. For example,$('#foo').click(function() { console.log('clicked!') });Then you can debug it like this:For jQuery 1.3.xvar cEvent = $('#foo').data("events").click; jQuery.each(cEvent, function(key, value) {    console.log(value) }) For jQuery 1.4.xvar cEvent = $('#foo').data("events").click; jQuery.each(cEvent, function(key, handlerObj) {     console.log(handlerObj.handler) }) For jQuery 1.8.x+var cEvents = $._data($('#foo')[0], "events").click; jQuery.each(cEvents, function(key, handlerObj) {   console.log(handlerObj.handler) })

What are jQuery events .load(), .ready(), .unload()?

Amit D
Updated on 15-Jun-2020 07:36:05

841 Views

jQuery load() methodThe load() method is used to attach event handler to load event.ExampleYou can try to run the following code to learn how to work with jQuery load() method.Note:  The method deprecated in jQuery 1.8. It got finally removed in jQuery 3.0. To run the following code, add jQuery version lesser than 1.8, Live Demo $(document).ready(function(){     $("img").load(function(){         alert("This is an image.");     }); }); This image will load only in jQuery version lesser than 1.8 jQuery ready() methodEasily specify what ... Read More

How to trigger the same function with jQuery multiple events?

Amit D
Updated on 11-Dec-2019 07:06:41

4K+ Views

To trigger the same function with multiple events, use the jQuery on() method with multiple events such as click, dblclick, mouse enter, mouse leave, hover, etc.ExampleYou can try to run the following code to learn how to work the same function with jQuery multiple events:Live Demo $(document).ready(function(){     $("p").on({             mouseenter: function(){             $(this).css("background-color", "gray");         },                   mouseleave: function(){             $(this).css("background-color", "red");         },                 dblclick: function(){             $(this).css("background-color", "yellow");         }             }); }); Click, double click and move the mouse pointer.

What is the difference between event.preventDefault() and return false in jQuery?

Amit D
Updated on 14-Feb-2020 11:20:51

509 Views

Returning false from jQuery event handlers is like calling both preventDefault() and stopPropagation(). The preventDefault() method prevents the browser from executing the default action.ExampleYou can try to run the following code to run event.preventDefault() method in jQuery −Live Demo           jQuery preventDefault() method                              $(document).ready(function() {             $("a").click(function(event){                event.preventDefault();                alert( "Default behavior is disabled!" );             ... Read More

How to check which key has been pressed using jQuery?

Amit D
Updated on 11-Dec-2019 06:42:03

620 Views

To check which key has been pressed, use the onkeydown attribute.ExampleYou can try to run the following code to get which key is pressed:Live Demo Press a key in the below box to get which key is pressed.   function demoFunction(event) {     var a = event.key;     document.getElementById("test").innerHTML = "You've pressed the key: " + a;   }

How do I prevent jQuery events from bubbling up to parent elements?

Amit D
Updated on 14-Feb-2020 11:05:15

1K+ Views

To prevent jQuery events from bubbling up to parent elements, use the stopPropogation() method. The stopPropagation() method stops the bubbling of an event to parent elements, preventing any parent handlers from being notified of the event.ExampleYou can try to run the following code to prevent jQuery events from bubbling up to parent elements −Live Demo           jQuery stopProagation() method                              $(document).ready(function() {             $("div").click(function(event){                alert("This is : " + $(this).text());                event.stopPropagation();             });          });                              div {             margin:20px;             padding:20px;             border:2px solid #666;             width:160px;          }                             Click on any box to see the effect:                        OUTER BOX                       INNER BOX                            

How to trigger a hover event from another element using jQuery?

Amit D
Updated on 30-Jul-2019 22:30:20

415 Views

Trigger a hover event from another element, using the hover() method over the selected element.You can try to run the following code to learn how to trigger a hover event from another element using jQuery:

How to stop the bubbling of an event to parent elements in jQuery?

Amit D
Updated on 14-Feb-2020 11:04:20

201 Views

To stop the bubbling of an event to parent elements, use the stopPropagation() method. You can try to run the following code to learn how to stop the bubbling of an event to parent elements −ExampleLive Demo           jQuery stopPropagation() method                              $(document).ready(function() {             $("div").click(function(event){                alert("This is : " + $(this).text());                event.stopPropagation();             });          });                              div {              margin:10px;              padding:12px;              border:2px solid #666;              width:160px;          }                             Click on any box to see the effect:                        OUTER BOX                       INNER BOX                                

How to prevent the browser from executing the default action in jQuery?

Amit D
Updated on 14-Feb-2020 10:41:19

673 Views

To prevent the browser from executing the default action in  jQuery, use the preventDefault() method. The preventDefault() method  prevents the browser from executing the default action.ExampleYou can use the method isDefaultPrevented() to know whether this method was ever called (on that event object).Live Demo           jQuery preventDefault() method                              $(document).ready(function() {             $("a").click(function(event){                event.preventDefault();                alert( "Default behavior is disabled!" );             });          });                         Click the following link and it won't work:       GOOGLE Inc.        

Advertisements