Found 766 Articles for JQuery

How to change CSS using jQuery?

David Meador
Updated on 10-Dec-2019 07:44:10

539 Views

To change CSS using jQuery, use the jQuery css() method.ExampleYou can try to run the following code to change CSS using jQuery:Live Demo $(document).ready(function(){     $("h2").css("backgroundColor", "red");     $("#myid").css({         "backgroundColor": "gray",         "color": "white"});     $(".myclass").css("border", "2px solid black"); }); Heading 2 This is some text. This is some text.

How to find left position of element in horizontal scroll container using jQuery?

David Meador
Updated on 10-Dec-2019 07:42:23

1K+ Views

To find the left position of element in horizontal scroll container using jQuery, use the animate() function with the scrollLeft() function.ExampleYou can try to run the following code to learn how to find left position of an element in horizontal scroll container:Live Demo $(document).ready(function() {        var scrollArea = $('#box');    var toScroll = $('#box .myclass');    function myScroll() {      toScroll.each(function() {         var self = $(this);         $(this).css('cursor', 'pointer');         $(this).on('click', function () {             var ... Read More

How to create a div element in jQuery?

Nizam Techs
Updated on 12-Jun-2020 13:15:44

581 Views

They are many way to add a div using jquery , but as the requirement says  on click of any square we have to addd a div.  The following code below will help in adding a div on click Click on any square below to see the result                               $(".div").on("click",function(){ $('#box').append(   $('')     .attr("id", "newDiv1")     .addClass("div")     .append("")       .text("hello world")     ); });

How to insert element as a last child using jQuery?

David Meador
Updated on 10-Dec-2019 07:06:22

4K+ Views

To insert element as a last child using jQuery, use the append() method. The append( content ) method appends content to the inside of every matched element.ExampleYou can try to run the following code to learn how to insert element as a last child using jQuery:Live Demo           jQuery Example                              var x = 0;          $(document).ready(function() {             $('.add').on('click', function (event) {         var html = "demo text " + x++ + "";         $("#parent-div").append(html);     });          });                          .div{             margin:10px;             padding:12px;             border:2px solid #F38B00;             width:60px;          }                                 Hello World                

How to insert element as a first child using jQuery?

David Meador
Updated on 10-Dec-2019 07:09:54

6K+ Views

To insert element as a first child using jQuery, use the prepend() method. The prepend( content ) method prepends content to the inside of every matched element.ExampleYou can try to run the following code to learn how to insert element as a first child using jQuery:Live Demo           jQuery Example                              var x = 0;          $(document).ready(function() {             $('.add').on('click', function (event) {                var html = "demo text " + x++ + "";                $("#parent-div").prepend(html);             });          });                              .div {             margin:10px;             padding:12px;             border:2px solid #F38B00;             width:60px;          }                   Hello World    

How to insert content after each of the matched elements using jQuery?

David Meador
Updated on 17-Dec-2019 07:12:28

119 Views

To insert content after each of the matched elements using jQuery, use the after() method.The after( content ) method inserts content after each of the matched elements. Here is the description of all the parameters used by this method −content − Content to insert after each target. This could be HTML or Text contentExampleYou can try to run the following code to learn how to insert content after each of the matched elements:Live Demo           jQuery after() method                              $(document).ready(function() { ... Read More

How to remove all CSS classes using jQuery?

Amit D
Updated on 17-Dec-2019 06:48:47

432 Views

To remove all CSS classes using jQuery, use the removeClass() method, with no argument.ExampleYou can try to run the following code to remove class:Live Demo           jQuery Example                          $(document).ready(function() {             $("p").removeClass();          });                              .red {             color:red;          }          .green {             color:green;          }                         This is first paragraph.       This is second paragraph.        

How to add table row in jQuery?

Amit D
Updated on 17-Dec-2019 06:47:44

6K+ Views

To add table row in jQuery, use the append() method to add table tags.ExampleYou can try to run the following code to learn how to add table row in jQuery:Live Demo           jQuery Add Table Rows                table{            width: 100%;            margin: 25px 0;            border-collapse: collapse;          }          table, th, td{            border: 1px solid #6C220B;          }          table th, table td{            padding: 8px;            text-align: left;          }                            $(document).ready(function(){              $(".row").click(function(){                  var name = $("#name").val();                  var subject = $("#subject").val();                  var markup = "" + name + "" + subject + "";                  $("table tbody").append(markup);              });                  });                                                                                                        Choose                Name                Subject                                                                            Amit                Java                                

How to insert an element into DOM using jQuery?

Amit D
Updated on 17-Dec-2019 07:33:22

313 Views

There may be a situation when you would like to insert new one or more DOM elements in your existing document. jQuery provides various methods to insert elements at various locations.The after( content ) method insert content after each of the matched elements whereas the method before( content ) method inserts content before each of the matched elements.After contentThe after( content ) method inserts content after each of the matched elements.ExampleYou can try to run the following code to learn how to insert an element into DOM, with after() method:Live Demo           jQuery after(content) method ... Read More

How to remove all the elements from DOM using element ID in jQuery?

Amit D
Updated on 17-Dec-2019 07:31:06

934 Views

To remove all the elements from DOM using element ID, use the remove() method.ExampleYou can try to run the following code to remove all the elements from DOM using element ID:Live Demo $(document).ready(function(){    $("button").click(function(){       $("#mydiv").remove();    }); }); Click to remove all elements This is some text. This is demo text.

Advertisements