i have a button that opens in a new window, but it opens in a small window with no scroll bars!
Here is the code:
//Function to open pop up window
function openWin(theURL,winName,features) {
window.open(theURL,winName,features);
}
how do i change this to open it in a window with scroll bars?
Here is the code:
//Function to open pop up window
function openWin(theURL,winName,features) {
window.open(theURL,winName,features);
}
how do i change this to open it in a window with scroll bars?