Side navigation
Ticket #6287: test-hide.html
File test-hide.html, 0.4 KB (added by orensol, May 11, 2010 11:53AM UTC)
<html>
<head>
<script type="text/javascript" language="javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
</head>
<body>
<style>
.hid {display: none;}
</style>
<img class="hid" src="http://www.google.com/intl/en_ALL/images/srpr/logo1w.png" />
<script>
$(function(){
$('img.hid').show().hide();
});
</script>
</body>
</html>
Download in other formats:
Original Format
File test-hide.html, 0.4 KB (added by orensol, May 11, 2010 11:53AM UTC)
<html>
<head>
<script type="text/javascript" language="javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
</head>
<body>
<style>
.hid {display: none;}
</style>
<img class="hid" src="http://www.google.com/intl/en_ALL/images/srpr/logo1w.png" />
<script>
$(function(){
$('img.hid').show().hide();
});
</script>
</body>
</html>