I am using this jquery function:
$(function() {
$("#refresh").click(function() {
$("#category_dialog").load("<?php echo $category; ?>")
})
});
i am using as well a link with the id=”refresh” problem is it reloads the content only once, when i click it second time it doesnt refresh and i know there were changes made.
Thanks!
Double check that you don’t duplicate your container ID’s.
Try switching to classes:
If this works then you know there must be duplicate ID’s in the content that has been loaded.