Code snippet to hide the element of specific Id in JQuery.

Amatya
Posted by Amatya under jQuery category on | Points: 40 | Views : 1420
The element with id="DNF" will be hidden on clicking the 'DNF' Id

Example

$(document).ready(function(){
$("button").click(function(){
$("#DNF").hide();
});
});


Thanks
Amatya

Comments or Responses

Login to post response