Сообщение от prison47
|
кликаем на .box появляется див .too. А вот теперь я хочу повесить обработчик на див .too например .hide(). То есть при нажатии на .too он исчезает.
|
Не вижу проблемы ...
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8" />
<style type="text/css">
.too{
display: none;
}
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$.fn.plugin = function () {
return this.each(function (index, self) {
$(this).click(function (e) {
$('.too').show();
});
$('.too').click(function (e) {
$(this).hide();
});
})
}
</script>
<script type="text/javascript">
$(window).load(function(){
$(".box").plugin();
});
</script>
<title></title>
</head>
<body>
<button class="box">is box</button>
<div class="too">is too</div>
</body>
</html>
не вижу проблемы