$(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
- $('input.submit_vote').live('click', function() {
- var test = $(this).val();
- alert(test);
- return false
- });
HTML
- <input type="image" value="1" class="submit_vote" />
- <input type="image" value="2" class="submit_vote" />
- <input type="image" value="3" class="submit_vote" />