I have a hidden link that contains a generated javascript snippet that I need to call:
var AUI = YUI;
AUI().use('event', function(A) {
var deleteButton = 46;
A.one('.searchNameSelect').on('keyup', function(e) {
if(e.button == deleteButton){
A.one('a.deleteSelectedSearch')._node.onclick();
}
});
});
<script src="http://cdn.alloyui.com/2.0.0/aui/aui-min.js"></script>
<a href="#" onclick="alert('call successful');" class="deleteSelectedSearch" style="display:none;"></a>
<select name="selectedSearch" size="1" class="searchNameSelect">
<option value="search">search</option>
<option value="another-search" selected="selected">another-search</option>
</select>
The link is generated with a MyFaces (2.1) commandLink
<h:commandLink class="deleteSearch" action="#{search.deleteSelected}"></h:commandLink>
which generates a onclick javascript: onclick="return myfaces.oam.submitForm('genertated-formId','generated');
I tried to trigger the click event with AUI, but without success.
Has anyone a good idea to trigger the onclick Javascript in a more AUI-Style way?
You need to use the 'node-event-simulate' module and call it as
Here is the modified code
Working Fiddle