JSFiddle - React, Tailwind, and code Playground
by mustafa yılmaz
HTML
<!DOCTYPE html>
<html>
<head>
<style>
div { width:50px; height:40px; margin:5px; border:3px outset green; float:left; }
.gizli_olarak_baslat{ display:none; }
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<button>Değişmediklerini görmek için gizli elementleri göster</button>
<div></div>
<div class="gizli_olarak_baslat"></div>
<div></div>
<div></div>
<div style="display:none;"></div>
<script>
$("div:visible").click(function () {
$(this).css("background", "yellow");
});
$("button").click(function () {
$("div:hidden").show("fast");
});
</script>
</body>
</html>