Attribute Equals Selector only retrieves initial vaues
Hi all.
I've just encountered a problem, described here:
http://api.jquery.com/attribute-equals-selector/#comment-79799646
Basically, when you use Attribute Equals Selector (although in my case it was actually Attribute Starts With Selector), the selector only retrieves the initial values of the elements, even if the value has changed since loading the page.
The author of the comment in JQuery API wrote that this does not happen in IE, but in my case it does (after all, the comment was written 2 years ago).
He suggested a workaround for the problem - using
$("input").filter(function() {return this.value=="";});
instead of
$("input[value='']")
but still this probably needs a fix.