I have the following code:
now when I execute it instead of the following:HTML Code:<!DOCTYPE html> <html> <head> <script type="text/javascript"> function gallery_3595(){ document.getElementById("full-details-box").style.display='block'; document.getElementById("full-details-box").innerHTML="<div class='gallery'>"+ "<h1 class='box-headline'>גלרייה</h1><img src='www.diur-plus.co.il\pics\466\ma_1_3595_1.jpg' width=\"300\" height=\"300\" id='big-picture'/><br/>"+ "<img src='www.diur-plus.co.il\pics\466\ma_1_3595_1.jpg' width=\"100\" height=\"100\" class='small-picture' /><img src='www.diur-plus.co.il\pics\466\ma_1_3595_2.jpg' width=\"100\" height=\"100\" class='small-picture' /><img src='www.diur-plus.co.il\pics\466\ma_1_3595_3.jpg' width=\"100\" height=\"100\" class='small-picture' /><img src='www.diur-plus.co.il\pics\466\ma_1_3595_4.jpg' width=\"100\" height=\"100\" class='small-picture' /><img src='www.diur-plus.co.il\pics\466\ma_1_3595_5.jpg' width=\"100\" height=\"100\" class='small-picture' /></div>"; } </script> <style type="text/css"> </style> </head> <body bgcolor="white"> <div id="full-details-box"> </div> </body> </html>
I get:HTML Code:<div id="full-details-box"><div class='gallery'> <h1 class='box-headline'>גלרייה</h1><img src='www.diur-plus.co.il\pics\466\ma_1_3595_1.jpg' width=\"300\" height=\"300\" id='big-picture'/><br/> <img src='www.diur-plus.co.il\pics\466\ma_1_3595_1.jpg' width=\"100\" height=\"100\" class='small-picture' /><img src='www.diur-plus.co.il\pics\466\ma_1_3595_2.jpg' width=\"100\" height=\"100\" class='small-picture' /><img src='www.diur-plus.co.il\pics\466\ma_1_3595_3.jpg' width=\"100\" height=\"100\" class='small-picture' /><img src='www.diur-plus.co.il\pics\466\ma_1_3595_4.jpg' width=\"100\" height=\"100\" class='small-picture' /><img src='www.diur-plus.co.il\pics\466\ma_1_3595_5.jpg' width=\"100\" height=\"100\" class='small-picture' /></div> </div>and I don't understand why it change the '\466' to '&6ma'HTML Code:<div id="full-details-box"><div class='gallery'> <h1 class='box-headline'>גלרייה</h1> <img src="www.diur-plus.co.ilpics&6ma_1_3595_1.jpg" width="300" height="300" id="big-picture"><br/> <img src="www.diur-plus.co.ilpics&6ma_1_3595_1.jpg" width="100" height="100" class="small-picture"> <img src="www.diur-plus.co.ilpics&6ma_1_3595_2.jpg" width="100" height="100" class="small-picture"> <img src="www.diur-plus.co.ilpics&6ma_1_3595_3.jpg" width="100" height="100" class="small-picture"> <img src="www.diur-plus.co.ilpics&6ma_1_3595_4.jpg" width="100" height="100" class="small-picture"> <img src="www.diur-plus.co.ilpics&6ma_1_3595_5.jpg" width="100" height="100" class="small-picture"> </div> </div>


Reply With Quote

Bookmarks