.click not working in IE
.click not working in IE
Hello
I reload a page in a div. In that div I use the code below to submit forms. It works everywhere but not in IE! No Jqueries work in the reloaded div when using IE.
I think it is because it reloading in a div and for some reason no JQUERY works there.
What am I doing wrong?
Demo:
It is here http://hotels2go.com.au/index2.php if you type in the destination box and click on a destination it submits the form, well not in IE.
Thanks
- $(document).ready(function() {
$('.submit_form').click(function()
{
alert('clicked');
$('#form').submit();
}
);
$('.hotel_name').click(function()
{
$('#form').submit();
}
);
});