I have a form split up into two parts. One part is for entering data and the following part is a list of the entered data. When I CUD an object in the form I want to update the list, I do this via a trigger:
jQuery("#magnifier").parent().trigger("click");
Due to the heavy use of Safari in my company I had to choose the parent otherwise safari wouldn't accept the trigger. The following code is generated by rails (V 1.2.3) and kicks off the update of my list:
<a href="#" onclick="new Ajax.Updater('list_section', '/input_form/reload_list',
{asynchronous:true, evalScripts:true, parameters:Form.serialize('periode_form')}); return false;">
<img alt="Magnifier" border="0" id="magnifier" src="/images/magnifier.png?1288947266">
</a>
Problem is in my company Safari and Opera are the most used browsers. I can get it to work for one browser but not for the other. Is there a way how I can implement this without a if opera else kind of yacki code?
jQuery("#magnifier").parent().trigger("click");? – philgiese Nov 8 '10 at 14:26