Sat Dec 29, 2012 1:23 pm
<html>
<head>
<title>id Selector JQuery usage</title>
<script src="jquery-1.8.3.js"></script>
<script>
// Waits until the all document is loaded.
$(document).ready(function(){
// Do something when any button is clicked
$("button").click(function(){
// Hide paragraph with id=me
$("#me").hide();
});
});
</script>
</head>
<body>
<p id="me">
This paragraph with ID
</p>
<p>
This is a second paragraph for JQuery example on codemiles
</p>
<button >Hide</button>
<button >Hide</button>
</body>
</html>
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.