Hi, I have this code which works intermittantly and I am confused. When giving a url to the windown.open command is there a limited length?? Or do I have some other problem?
I get the error "Invalid pointer" some of the time and other times its pops up the window perfectly.
Here is my code:
function pop_up_data(form){
var url = 'show_reverse_class.php?encode="' + form.encoded.value + '"&showing=' + form.showing.value;
var name = 'Window';
var win = window.open(url, name,"width=550,height=550,status=0,toolbar=0,menubar=0,location=0,resizeable=1,scrollbars=yes"
;
win.focus();
}
Any help would be most appreciatted
Thanks {Greenster}
I get the error "Invalid pointer" some of the time and other times its pops up the window perfectly.
Here is my code:
function pop_up_data(form){
var url = 'show_reverse_class.php?encode="' + form.encoded.value + '"&showing=' + form.showing.value;
var name = 'Window';
var win = window.open(url, name,"width=550,height=550,status=0,toolbar=0,menubar=0,location=0,resizeable=1,scrollbars=yes"
win.focus();
}
Any help would be most appreciatted
Thanks {Greenster}