Calling and Handling External Javascript with Parameters

see this the note in post

But basicly
mytest(hypeDocument, element, event,"foo");

and

function mytest() {
alert (arguments[3]);	
}

I kept the (hypeDocument, element, event) in as not sure if you really needed to pass them also for your goal..

1 Like