I have this page
If you go there you will see products and next to each product on the left is a more button. Clicking on that button you get the scrolldown which works great....
There is a dropdown on the top which i have a Jquery load on it, which refreshes the entire page with new content... if you click on the more again after you select the top dropdown to any type of "Fast food Pos Station" the scroll doesnt work anymore... I am at a lose why this is happening
$("#main_content").load("function.php?type="+type+"piz&count=5");
this is the call that is firing when the user selects the dropdown
here is the code for the toggle
// blue item expand
$('.item-blue .btn-expand').click(function () {
var btn = $(this);
$(this).parent().prev().slideToggle(function () {
btn.toggleClass('btn-expand-h');
});
return false;
});