<script>
jQuery(document).ready(function ($) {
$('.accordion-title').click(function () {
if (!$(this).hasClass('active')) {
$('.accordion-title').removeClass('active').find(':first-child').addClass('plus').text("+").removeClass('minus');
$('.accordion-item').slideUp();
$(this).toggleClass('active')
.find(':first-child').removeClass('plus').addClass('minus').text("-").parent().next().slideToggle();
}
})
.filter(':first').click();
});
</script>
This was t script i'm using. Now i want n tat position i want to pass dynamic id and then t required id content should display on screen. how to pass a dynamic id n tat line
Thanks & Regards
JENI