I have this bind event as below and all works fine on all other browsers except IE 7.
$('* #theButton').click(function(e) {e.preventDefault();....};
But if i add all the id's in it will work, but this is not ideal as eventually I might wont loads, at the moment I have 9 buttons with the same id.
Any ideas why its not excepting the '*' reference etc
Thanks
Si