I have live events with submit and click:
<form class='myform'>
<input type='text' name='fruit'>
</form>
<a href='#' class='formSubmit'>Submit</a>
I have jquery that calls the form to submit via Enter or clicking the tag
$('a.formSubmit').live('click', function(){
$('form.myform').submit();
return false;
});
$('form.myform').live('submit', function(){
//conditional statements here
});
So the problem is, my jquery scripts works fine on all browsers except IE and FireFox. It seems that .live() method is the cause. because when i remove live() method and do it just click() method it will work. Now i need to do it on live() method cause i will be having functionality with newly appended elements and forms. Is there any way to make it work on Firefox and IE?
Thanks!
.live()is deprecated in version 1.7.+. Use.on()instead. – honyock Jul 17 '12 at 19:23