|
Show/Hide elements
This example shows how to hide/show the elements using jQuery API.
03 | < script type = "text/javascript" src = "js/jquery.js" ></ script > |
04 | < script type = "text/javascript" > |
08 | $("#show").click( function() { |
13 | $("#hide").click( function() { |
26 | < input type = "button" id = "show" value = "show" /> |
27 | < input type = "button" id = "hide" value = "hide" /> |
31 | < div id = "test" style = "background-color:pink;width:200px;height:200px" > |
|
|
|