> ## Content Index
> Fetch the complete content index at: https://irishdotnet.dev/llms.txt
> Use this file to discover other available public pages before exploring further.

# How to fix the jQuery live event not firing for submit buttons in IE
- URL: https://irishdotnet.dev/how-to-fix-the-jquery-live-event-not-firing-for-submit-buttons-in-ie/
- Published: 2010-07-04T23:00:00.000Z
- Updated: 2024-08-05T08:31:31.000Z
- Author: Richard Reddy
- Tags: JavaScript

I was recently working on our new website for [Dragnet Systems](http://www.dragnet.ie/?ref=irishdotnet.dev) when I stumbled onto an issue with submit buttons not working as expected in Internet Explorer when I was using the .live event for jQuery. Everything works as intended in Firefox, Safari, Opera and Chrome but Internet Explorer was completely ignoring the form submit clicks.

After doing some reading over on the jQuery forums it turns out that this is an issue quite a few people have run into. The solution I went with was to use a third party plugin called [LiveQuery](http://docs.jquery.com/Plugins/livequery?ref=irishdotnet.dev). This plugin ensures that after the DOM has loaded my elements are correctly registered to my events and will work as expected.

Using the script couldn't be easier, simply download the file from the [LiveQuery](http://docs.jquery.com/Plugins/livequery?ref=irishdotnet.dev) plugin page and in your code use *.livequery* instead of *.live*.

There's a good chance that this will be fixed in later releases of jQuery but for now (1.4.2) this is a nice workaround.