To Clear all type of element of a specific div using JQuery
We have used three examples here. All are same so you can apply one line of simple code in your project.
Say, multiple input elements like text box(s), text area(s) etc. within same div element divEED_Panel and you want To Clear all type of element of a specific div using JQuery then just use this.
Say, multiple input elements like text box(s), text area(s) etc. within same div element divEED_Panel and you want To Clear all type of element of a specific div using JQuery then just use this.
$("#divEED_Panel :input").each(function() { this.value = ""; });You can clear the multiple div element together with just a single click. Create a function clear_All() with the following code and call it into the click event.
function clear_All(){
$("#divEDL_Panel :input").each(function() { this.value = ""; });
$("#divEPF_Sal_Subs_Panel :input").each(function() { this.value = ""; });
}
To Clear all type of element of a specific div using JQuery
Reviewed by Ashok Sen
on
14:09:00
Rating:
No comments:
Post a Comment