Found 766 Articles for JQuery

What is the difference between `on` and `live` or `bind` in jQuery?

Amit D
Updated on 17-Feb-2020 06:01:22

253 Views

jQuery on() methodThe on( events [, selector ] [, data ], handler ) method binds a handler to an event (like click) for all current − and future − matched element. It can also bind custom events.Here is the description of all the parameters used by this method −events − Event types separated by spaces.selector − A Selector Stringdata − Data to be passed to the event handler in event.datahandler − A function to bind to the event on each of the set of matched elementsExampleYou can try to run the following code to learn how to work with on() method − ... Read More

How to disable a particular jQuery event on a page?

Amit D
Updated on 17-Feb-2020 05:54:34

487 Views

To disable a particular jQuery event, use the jQuery off() method. You can try to run the following code to learn how to disable a particular jQuery event on a page −ExampleLive Demo $(document).ready(function(){     $("p").on("click", function(){         alert("You clicked it!");     });     $("button").click(function(){         $("p").off("click");     }); }); Click me Click above to generate an alert box. Click the below button to remove namespace, which won’t generate an alert box. Remove Event

How to submit a form using jQuery click event?

Amit D
Updated on 17-Feb-2020 05:53:22

6K+ Views

To submit a form using jQuery click event, you need to detect the submit event. Let’s submit a form using click event and without using click event.ExampleYou can try to run the following code to learn how to submit a form using jQuery click event −Live Demo $(document).ready(function(){     $(function() {    $('#submit1').click(function(e) {         e.preventDefault();         $("#Demo").submit();     });    $('#submit2').click(function(e) {         e.preventDefault();         $("#Demo").submit();     }); }); });     Team             Submit

How to set background color in jQuery?

Amit D
Updated on 11-Dec-2019 07:59:07

5K+ Views

To set the background color using jQuery, use the jQuery css() property. We will set background color on mouse hover with the jQuery on() method.ExampleYou can try to run the following color to set background color in jQuery.Live Demo $(document).ready(function(){     $("body").on({         mouseenter: function(){             $(this).css("background-color", "gray");         },       });     }); Move the mouse pointer on the page to change the background color.

How to change the background color using jQuery?

Amit D
Updated on 11-Dec-2019 08:04:36

9K+ Views

To change the background color using jQuery, use the jQuery css() property. We will change background color on mouse hover with the jQuery on() and css() method. ExampleYou can try to run the following code to learn how to change background color using jQuery:Live Demo $(document).ready(function(){     $("body").on({         mouseenter: function(){             $(this).css("background-color", "gray");         },                   mouseleave: function(){             $(this).css("background-color", "red");         },                 dblclick: function(){             $(this).css("background-color", "yellow");         }     }); }); Double click and move the mouse pointer to change the background color.

How to remove underline from text hyperlink using jQuery?

Amit D
Updated on 11-Dec-2019 08:05:30

572 Views

To remove underline from text hyperlink on hover using jQuery, use the jQuery css() property. The color text-decoration property is used with value none.ExampleYou can try to run the following code to learn how to remove underline from text hyperlink:Live Demo           jQuery Text Decoration                              $(document).ready(function() {             $('a').hover(                                function () {                   $(this).css({"text-decoration":"none"});                });                          });                    a {            text-decoration: underline;          }                         Demo text                

How to underline a Hyperlink on Hover using jQuery?

Amit D
Updated on 11-Dec-2019 08:17:41

468 Views

To underline a hyperlink on hover using jQuery, use the jQuery css() property. The color text-decoration  property is used.ExampleYou can try to run the following code to learn how to underline a hyperlink on hover:Live Demo           jQuery Hyperlink Decoration                              $(document).ready(function() {             $('a').hover(                                function () {                   $(this).css({"text-decoration":"underline"});                });                          });                   a {            text-decoration: none;          }                         Demo text                

How to change the 'text-decoration' property with jQuery?

Amit D
Updated on 11-Dec-2019 08:12:16

660 Views

To change text decoration property with jQuery, use the jQuery css() property.ExampleYou can try to run the following code to change text-decoration property from underline to overline:Live Demo $(document).ready(function(){     $("p").on({         mouseenter: function(){         $(this).css({"text-decoration": "overline"});         }     });     }); p {    text-decoration: underline; } Move the mouse pointer on the text to remove underline and add overline.

How to remove underline with jQuery?

Amit D
Updated on 11-Dec-2019 08:11:27

388 Views

To remove underline from a text in jQuery, use the jQuery css() method. The css property text-decoration property is used with none value.ExampleYou can try to run the following code to remove underline:Live Demo $(document).ready(function(){     $("p").on({         mouseenter: function(){         $(this).css({"text-decoration": "none"});         }     });     }); p {    text-decoration: underline; } Move the mouse pointer on the text to remove underline.

How to make text bold, italic and underline using jQuery

Amit D
Updated on 17-Feb-2020 05:17:22

3K+ Views

To make text bold, italic and underline using jQuery, use the jQuery css() method with the CSS properties font-style, font-weight and text-decoration. You can try to run the following code to learn how to make text bold, italic and underline using jQuery −ExampleLive Demo $(document).ready(function(){     $("p").on({         mouseenter: function(){         $(this).css({"font-style": "italic", "font-weight": "bold","text-decoration": "underline"});         }     });     }); Move the mouse pointer on the text to make text bold, italic and underline.

Advertisements