i should really stick to php, but here is my javascript issue
using the jquery.js lib which i was hoping was going to make my life easier
i have a simple hide the search button and replace it with a loading graphic
script, however on firefox if i hit the back button the loading image is
there not the search button. On IE the search button is back as expected
$(document).ready(function(){
$("#search-form").submit( function() {
$("#search-button").hide()
$("#search-loading").show();
});
});
you can see it in action:
http://www.eldritchdark.com
top right search box, submit and back ok in ie not ok in ff