$(this).val() not working in firefox

$(this).val() not working in firefox

Hi, I've been stuck with this for a while.  Is there any reason why the below will not work in Firefox & IE, but will work in Chrome and Safari?


Jquery
  1. $('input.submit_vote').live('click', function() {
  2. var test = $(this).val();
  3. alert(test);
  4. return false
  5. });
HTML
  1. <input type="image" value="1" class="submit_vote" />
  2. <input type="image" value="2" class="submit_vote" />
  3. <input type="image" value="3" class="submit_vote" />