Click here to Skip to main content
15,898,035 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
in slide show i want to change the content in iframe
Posted

You simply need to set the src property of the iFrame object to the page containing the new data you want to show.
 
Share this answer
 
v3
code like
<iframe name="fraImage" border="1" frameborder="1" width="500" height="500"></iframe>
<img src="picture1.gif" onClick="LoadImage('picture1.gif');" />
function LoadImage(strImageUrl)
{
  fraImage.document.location.href = strImageUrl;
}
 
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