button.onclick = new Function("func2()") + button.onclick

F

foldface

Hi
Subject says it all, how can I do this?

Also, do things like string functions belong to any object?
i.e. are they perhaps part of the window object but are a special
case? I wondering whether its possible to display all of their
names by iterating around something in the browser (suspect
their not and you can't but its worth asking)

Ta
F
 
D

dylan.moreland

Are you trying to call your new function and also the old one? You
can't add functions together. Something like this would work:

window._oldonload = window.onload;
window.onload = function(e) { func2(); window._oldonload(); };

Really, you should be registering these event listeners with the
appropriate DOM functions.
 
F

foldface

Are you trying to call your new function and also the old one? You
can't add functions together. Something like this would work:

window._oldonload = window.onload;
window.onload = function(e) { func2(); window._oldonload(); };

Really, you should be registering these event listeners with the
appropriate DOM functions.

That works fine thanks

I'm trying to make development a little easier by finding ways around
some annoying javascript/visual studio problems.

(1) .js files are locked by VS while your working on them and
sometimes the breakpoints won't work, even if you set them in the
running documents. I thought a way around this is would be
to add 'debugger' on the start of the appropriate event method via
some other javascript, hacky but it works.
Also I've written a DOM parser (yes, another one), so I can do this
(nearly) relatively easily, except I fell down on the syntax.

Other things include writing functions and then missing out brackets
and having to find them manually, jslint seems to help with this,
I'm not aware of any better ways

Thanks for the reply

F
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,431
Messages
2,571,677
Members
48,796
Latest member
Greg L.

Latest Threads

Top