I want to run some onmousedown function, but how can I run this function without onmousedown event, in twebbrowser?

Can you suggest me a proper function, please?

link|improve this question
2  
Is this on your own web page, or on someone else's site? – alnorth29 Sep 30 '11 at 10:20
on someone web page , – gultekin Sep 30 '11 at 10:24
What you mean disable. This functions can be called without default behaviour, or with error? – Andrew D. Sep 30 '11 at 10:26
i have edit question. – gultekin Sep 30 '11 at 10:35
feedback

1 Answer

Try setting the function name to null, like this:

alert('test'); // will show 'test'
alert = null;
alert('test'); // will do nothing
link|improve this answer
It will throw an error because it's not a function. You'd be better off with setting it to a no-op. – pimvdb Sep 30 '11 at 10:40
in ff 6.0.2 doesn't throw anything. i guess it depends on the engine – Vlad Sep 30 '11 at 10:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.