Sat Dec 29, 2012 1:33 pm
<html>
<head>
<title>class selector 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 any element with class big
$(".big").hide();
});
});
</script>
</head>
<body>
<textarea rows="5" cols="12" class="big" >
This textarea wil be hidden after you click hide buttton.
</textarea>
<textarea rows="3" cols="10" class="small" >
Normal textarea with anytext.
</textarea>
<p class="big"> this will be hidden </p>
<input type="text" value="Text value" class="big">
<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.