get and set string onmouseover js value
I want to run some onmo开发者_Go百科usedown
function, but how can I run this function without onmousedown
event, in twebbrowser?
Can you suggest me a proper function, please?
Try setting the function name to null, like this:
alert('test'); // will show 'test'
alert = null;
alert('test'); // will do nothing
精彩评论