I have something like this:
function parent(one,two,three,yahoo) {
blabla
blabla
function(what,where,how,one,two) {
blabla
//usage of what, where, how, one, two
blabla
}
blabla
blabla
}
So, as you can see, I want to pass the "one" and "two" from "parent" to "child".
How can I achieve this in cross-browser way, please?