10 Eylül 2013 Salı

28.08.2013:          


İlk önce hide nedir, nasıl kullanılır hakkında araştırma yaptım.Ardından ise örnek üzerinde deneme yaptım...
                                              HİDE()

Bu metod sayesinde seçilen elemanlar gizlenebilir...

örnek:




html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.gizle').click(function(){
 $('.p').hide();
});
});
</script>
<title>gizleee</title>
</head>
<body>
<a href="#" class="gizle">gizle</a>
<div class="p">
 melek kirkpinar 1992  erzurum askale...
</div>
</body>
</html>

BUGÜN DE TAMAMDIR....

Hiç yorum yok:

Yorum Gönder