I asked about this on the jquery forum a few weeks ago without luck, so I will try again here :)
I\'ve made a simple widget for a project I\'m working on, but I have enc
I've been getting this problem also and worked out it was down to silly behaviour in firefox, my fix was as so:
before:
//set up the buttons $("button").button();
after:
//set up the buttons (and make sure firefox behaves) $("button").button().attr("autocomplete", "off");