In IE, I can just call element.click() from javascript - how do I accomplish the same task in Firefox? Ideally I'd like to have some javascript that would work equally well cross-browser, but if necessary I'll have different per-browser javascript for this.
|
|
For firefox links appear to be "special". The only way I was able to get this working was to use the createEvent (described here: https://developer.mozilla.org/en/DOM/document.createEvent) and call the initMouseEvent function. Even that didn't work completely, I had to manually tell the browser to open a link...
|
|||||
|
|
Using jQuery you can do exactly the same thing, for example:
Which will "click" all anchors on the page. |
|||||
|
|
Are you trying to actually follow the link or trigger the onclick? You can trigger an onclick with something like this:
|
|||||||
|
|
Here's a cross browser working function (usable for other than click handlers too):
|
|||||
|
|
element.click() is a standard method outlined by the W3C DOM specification. Mozilla's Gecko/Firefox follows the standard and only allows this method to be called on INPUT elements. |
|||
|
|
I used KooiInc's function listed above but I had to use two different input types one 'button' for IE and one 'submit' for FireFox. I am not exactly sure why but it works. // HTML input type="button" id="btnEmailHidden" style="display:none" runat="server" onserverclick="btnEmailHidden_Click" clientidmode="Static" input type="submit" id="btnEmailHidden2" style="display:none" runat="server" onserverclick="btnEmailHidden_Click" clientidmode="Static" // in Java Script var hiddenBtn = document.getElementById("btnEmailHidden");
I have search and tried many suggestions but this is what ended up working. If I had some more time I would have liked to investigate why submit works with FF and button with IE but that would be a luxury right now so on to the next problem. |
|||
|
|