Çakışan jquery kütüphaneleri:
<script></script>
<script></script>
Fonksiyonlar
<script>
$(document).ready(function(){
$( "[id^='but']" ).click(function() {
var self = $(this)
, content = $('.popupcontent');
$('#popup').bPopup({
easing: 'easeOutBack',
speed: 450,
transition: 'slideDown',
modalClose: false,
opacity: 0.6,
onOpen: function() {
content.html(self.data('bpopup') || '');
},
onClose: function() {
content.empty();
}
});
});
});
</script>
<script>
$(document).ready(function(){
$(".kapsa").show();
$(".ak").toggle(function(){
var index = $(".ak").index(this);
$(".adetay:eq("+index+")").slideUp("slow");
$(".ak:eq("+index+")").html('Göster');
},
function(){
var index = $(".ak").index(this);
$(".adetay:eq("+index+")").slideDown("slow");
$(".ak:eq("+index+")").html('Gizle');
});
});
</script>