Found 9053 Articles for Front End Technology

How can I select an element with multiple classes in jQuery?

David Meador
Updated on 12-Jun-2020 12:31:14

540 Views

To select an element with multiple classes, do the following. Here, x, y, and z are our classes,$('.x.y.z')You can try to run the following code to learn how to select an element with multiple classes in jQuery:Live Demo           jQuery Selector Example                          $(document).ready(function() {             $(".one.two").css("background-color", "grey");          });                                  This is first division of the DOM.                      This is third division of the DOM              

How can I select an element by tag name using jQuery?

David Meador
Updated on 13-Feb-2020 07:28:34

1K+ Views

Using jQuery selector, you can select an element by tag name. The jQuery element selector selects elements.ExampleTry to run the following code to learn how to select an element by tag name using jQuery −Live Demo           jQuery Selector Example                          $(document).ready(function() {             $("div").css("background-color", "yellow");          });                                  This is first division of the DOM.                      This is second division of the DOM.                      This is third division of the DOM              

What are jQuery Selectors?

David Meador
Updated on 13-Feb-2020 07:27:20

153 Views

A jQuery Selector is a function which makes use of expressions to find out matching elements from a DOM based on the given criteria.Selectors are used to select one or more HTML elements using jQuery. Once an element is selected then we can perform various operations on that selected element. jQuery selectors start with the dollar sign and parentheses - $(). You can try to run the following code to learn how to work with jQuery Selectors −ExampleLive Demo           jQuery Selectors                     ... Read More

How to concatenate variable in a string in jQuery?

David Meador
Updated on 13-Feb-2020 07:25:09

6K+ Views

You can easily concatenate variable in a string in jQuery, using the jQuery html() method. Try to run the following code to learn how to use variable in a string with jQuery −ExampleLive Demo     $(function(){       $("a").click(function(){         var id= $(".id").html();         $('.demo').html("Welcome to ");                   });     });               Click me             Qries    

How can we concatenate two strings using jQuery?

David Meador
Updated on 13-Feb-2020 07:22:50

4K+ Views

To concatenate two strings use the + concatenation operator. You can try to run the following code to learn how to concatenate two strings using jQuery −ExampleLive Demo         $(function(){       $("a").click(function(){         var id= $(".id").html();         $('.myclass').html("Hello");                   });     });              Click me            Tutorialspoint    

What are jQuery string methods?

David Meador
Updated on 13-Feb-2020 07:21:52

552 Views

jQuery string methods helps in string manipulation and makes your work easier while using strings. String methods find the length of the string, a string in a string, extract string parts, etc. jQuery is a JavaScript library, so using JavaScript String functions in it is perfectly fine.ExampleYou can try to run the following code to learn how to find the length of a string with string method −Live Demo Finding the number of characters in "Tutorialspoint" Get Length function myFunc() {     var str1 = "Tutorialspoint";     var num = str1.length;     document.getElementById("example").innerHTML = num; }

How to use a variable in a string in jQuery?

Ricky Barnes
Updated on 12-Feb-2020 12:53:46

3K+ Views

jQuery is a JavaScript library introduced to make development with JavaScript easier. Let us see how to use variable in a string using the html() method.ExampleYou can try to run the following code to learn how to use variable in a string in jQuery −Live Demo    $(function(){       $("a").click(function(){         var id= $(".id").html();         $('.myclass').html("Hello");                   });    });           Click me             Learners    

Where do we use jQuery.noConflict() method?

Ricky Barnes
Updated on 12-Jun-2020 09:01:23

115 Views

jQuery.conflict() method allows you to use multiple frameworks, while using jQuery. The $ sign is used for jQuery, but what if other frameworks also use the same $ sign; this may create issues and conflict. To avoid this, jQuery issued the noConflict() method. The method releases the $ sign to be used my other JavaScript frameworks. Use jQuery with the name, jQuery.ExampleYou can try to run the following code to learn how to work with the noConflict() method −Live Demo $.noConflict(); jQuery(document).ready(function(){    jQuery("button").click(function(){       jQuery("h3").text("jQuery works perfectly");    }); }); ... Read More

How to write a custom jQuery plugin?

Ricky Barnes
Updated on 12-Jun-2020 09:00:13

159 Views

To create a jQuery plugin, first create a file named jquery-demoplugin.js with the following code. This is our plugin code. Here, demoplugin is the name of our plugin. You can add any name to your custom plugin −(function ( $ ) {    $.fn.demoplugin = function( options ) {       var web = $.extend({          name: 'example'       }, options );       return this.append('Website: ' + web.name + '.com');    }; }( jQuery ));Now, to load it, add to the HTML file, new.html −    $( document ).ready(function() {       $( '#content ).demoplugin();    });

How to use multiple versions of jQuery on the same page?

Amit D
Updated on 12-Jun-2020 08:58:44

3K+ Views

Yes, you can use multiple versions of jQuery on the same page. To avoid any kind of conflict, use the jQuery.noConflict() method. jQuery.noConflict() method allows you to use multiple frameworks, while using jQuery. Other JavaScript frameworks include Ember, Angular, Backbone, etc.The $ sign is used for jQuery, but what if other frameworks also use the same $ sign; this may create issues and conflict. To avoid this, jQuery issued the noConflict() method. The method releases the $ sign to be used my other JavaScript frameworks. Use jQuery with the name, jQuery.With this, you can also use multiple versions of jQuery ... Read More

Advertisements