> open (URL, windowName[, windowFeatures]) As I see, you are referring to *window.open*, which is a JavaScript function, if the JavaScript is run inside the browser, where DOM scripting is enabled. As you might know by know, JavaScript can be run outside of the browser too, where *window.open* is not defined (and in fact, there is no window object).
> I am confused a bit, I was under the impression it was a javascript function. > So if I want to use a trigger(down key) to run a function that will > run 'open (URL, windowName[, windowFeatures])' > it is up to the browser to decided how it will handle it and this > would be some type of options when compile the browser? You can read about the available features on the MDC page, as well as what features are supported in which browser, and if there are any quirks for that setting. https://developer.mozilla.org/en/DOM/window.open -- Poetro -- To view archived discussions from the original JSMentors Mailman list: http://www.mail-archive.com/[email protected]/ To search via a non-Google archive, visit here: http://www.mail-archive.com/[email protected]/ To unsubscribe from this group, send email to [email protected]
