Click here to Skip to main content
16,022,536 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how can i call the image inside another folder using javascript

ASAP please

i know it's so easy
but I am newby

please answer me immediately anyone there :)
Posted

1 solution

 Hope it will help you
function addTheImage() 
{     var img = document.createElement('img');
     img.src = "http://....";   
  document.body.appendChild(img); 
} 

http://www.irt.org/articles/js132/[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900