I\'d like to make a click event fire on an tag programmatically.
Just calling click() doesn\'t seem to do anything or at lea
THIS IS POSSIBLE: Under FF4+, Opera ?, Chrome: but:
inputElement.click() should be called from user action context! (not script execution context)
inputElement.click()
should be visible (inputElement.style.display !== 'none') (you can hide it with visibility or something other, but not "display" property)
inputElement.style.display !== 'none'