var popup = window.open('http://twitter.com');
popup;
if ($.browser.safari && !popup) {
alert('Please allow for popups on your browser.');
}
I came across the above code today, what (if any) is the reason for the second line "popup;" ?
var popup = window.open('http://twitter.com');
popup;
if ($.browser.safari && !popup) {
alert('Please allow for popups on your browser.');
}
I came across the above code today, what (if any) is the reason for the second line "popup;" ?