
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 10483 Articles for Web Development

328 Views
jQuery.append()The append( content ) method appends content to the inside of every matched element. 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 work with jQuery.append() method:Live Demo jQuery append() method $(document).ready(function() { $("div").click(function () { $(this).append('' ... Read More

299 Views
jQuery.empty()The empty() method removes all child nodes from the set of matched elements.ExampleYou can try to run the following code to learn how to work with jQuery empty() method:Live Demo jQuery empty() method $(document).ready(function() { $("div").click(function () { $(this).empty(); }); }); ... Read More

116 Views
To prepend content to the inside of every matched element using jQuery, use the prepend() method. Here is the description of the parameter 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 prepend content to the inside of every matched element using jQuery −Live Demo jQuery prepend() method $(document).ready(function() { $("div").click(function () { $(this).prepend('' ); }); }); .div { margin:10px; padding:12px; border:2px solid #666; width:60px; } Click on any square below to see the result:

486 Views
jQuery.hide()If you want to hide an element, then use the hide() method to hide the selected element.ExampleYou can try to run the following code to learn how to work with jQuery.hide() method using jQuery:Live Demo $(document).ready(function(){ $(".button1").click(function(){ $("p").hide(); }); $(".button2").click(function(){ $("p").show(); }); }); Hide the element Show the element This is demo text. jQuery.remove()The remove() method will remove the selected elements, but it also includes the text and child nodes.ExampleYou can try to run ... Read More

205 Views
To clone an element using jQuery, use the jQuery.clone() method. The clone() method clones matched DOM Elements and select the clones.This is useful for moving copies of the elements to another location in the DOM.ExampleYou can try to run the following code to learn how to work with jQuery.clone() method in jQuery:Live Demo jQuery clone() method $(document).ready(function() { $("div").click(function () { $(this).clone().insertAfter(this); }); }); .div { margin:15px; padding:15px; border:4px solid #666; width:90px; } Click on any square below to see the result:

3K+ Views
To duplicate a div in jQuery, use the jQuery clone() method.ExampleYou can try to run the following code to learn how to duplicate a div using jQuery:Live Demo $(document).ready(function(){ $("button").click(function(){ $("div").clone().appendTo("body"); }); }); This is a text Clone div and append

5K+ Views
To clone an element using jQuery, use the jQuery.clone() method. The clone() method clones matched DOM Elements and select the clones.This is useful for moving copies of the elements to another location in the DOM.ExampleYou can try to run the following code to learn how to clone an element using jQuery:Live Demo jQuery clone() method $(document).ready(function() { $("div").click(function () { $(this).clone().insertAfter(this); }); }); .div { margin:10px; padding:12px; border:2px solid #666; width:60px; } Click on any square below to see the result:

725 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.

2K+ 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

996 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") ); });