livesearch field id has changed
Jamroom Developers
From brian:
Quote: This is all in place to prevent Chrome from auto-filling live search fields, which breaks them. I ended up trying A LOT of things to get this working correctly - I don't remember why I'm going that with the class, but it was needed for some reason.
So the best thing to do is probably patch your sites modules/jrCore/lib/form.php
This part has changed:
if (!empty($_field['class'])) {
$cls .= ' ' . $_field['class'];
$cls .= ' live_search_' . $_field['live_search_original_name'];
unset($_field['class']);
}
That will be there in the next core release and overwrite your patch so your code based on it will keep working.
It will give you a unique class to target that wont get removed.