Click to See Complete Forum and Search --> : am i leaving something out?


jbetts1967
03-07-2003, 02:03 PM
what am i leaving out ofthe following code:
document.write('<img src="' + buttondir + picturebuttonimage' border=0 width=150 height=40>');

thanks....

gil davis
03-07-2003, 02:10 PM
Originally posted by jbetts1967
what am i leaving out ofthe following code:
document.write('<img src="' + buttondir + picturebuttonimage' border=0 width=150 height=40>');

thanks.... A description of the problem comes to mind...

It looks as if you are having quotation mark trauma. If so, this should work (or at least not have errors):document.write('<img src="' + buttondir + picturebuttonimage + '" border=0 width=150 height=40>');