javascript - Click on an anchor not working -


i trying click on anchor, shows type error .. not function.

here code:

file_browser_callback: function(field_name, url, type, win) {     win.document.getelementbyid("media").onclick();          win.document.getelementbyid(field_name).value = 'window.send_to_editor';  }, 

why doing this

i using tinymce editor, , want use file_browser_callback.

there anchor #media in document open thickbox , after selecting image in thick box send callback send_to_editor,

so want value send_to_editor , set

win.document.getelementbyid(field_name).value 

now getting error:

typeerror: win.document.getelementbyid(...).onclick not function 

please dont suggest jquery code, need pure javascript (tinymce init dont support jquery)

when event has been bound addeventlistener, running onclick() won't work (as still null)

you try following:

var clickevent = document.createevent("mouseevent"); clickevent.initmouseevent("click", true, true, window, 1, 0, 0, 0, 0,                           false, false, false, false, 0, null);  document.getelementbyid('media').dispatchevent(clickevent); 

Comments

Popular posts from this blog

html5 - What is breaking my page when printing? -

html - Unable to style the color of bullets in a list -

c# - must be a non-abstract type with a public parameterless constructor in redis -