I have included a link to my site below for review of the JS in the head section, as well as to allow YOU to see how I set it all up. If you don\'t want to use the link, I\'ll a
If you're using jquery, you could do it with the "live" method. That will attach event handlers to any new elements that appear on the page even after an ajax request. So if you gave the close bit a class:
Nope, Get this out of the way
You could use this bit if jquery:
$('.close_dialog').live('click', function(){
$('.DoYouHaveADirtBikeForSaleBox').remove();
});
Hope that helps :-)