Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

windows.open javascript help

Status
Not open for further replies.

iis6newbie

Technical User
Nov 22, 2003
54
US
Hello all,

Is there any way that I can send a text message with a picture using window.open?


here is my javascript function

function open_window(url, style, color) {
mywin = window.open(url,"win",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=400, height=530,left=2,top=2,left=2,top=2');

}

how can I display the picture with color or style?

Thanks in advance


 
Is this something like what you want?
Code:
function open_window(background, text, image) 
{
  mywin = window.open("about:blank","win",'resizable=1,width=400,height=530,left=2,top=2);
  mywin.document.writeln("<html>");
  mywin.document.writeln("<body background=\"" + background + "\">");
  mywin.document.writeln("<h3>"+text+"</h3>");
  mywin.document.writeln("<img src=\"" + image + "\">");
  mywin.document.writeln("</body>");
  mywin.document.writeln("</html>");
}

--Chessbot

"See the TURTLE of enormous girth!"
-- Stephen King, The Dark Tower series
 
Thanks alot.

Yeah this is what I am looking for.
 
No problem. Customize to your heart's desire.

--Chessbot

"See the TURTLE of enormous girth!"
-- Stephen King, The Dark Tower series
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top