View Full Version : HTML javascript calling...?
JesusFreak
03-26-2008, 02:22 PM
Can you make the source of one webpage become the source of another one? Say I wanted to be able to see my myspace page through a different domain name. Instead of copying the source code manually to update it every-time, is there an automatic way to do that? Either by HTML, Java, or CSS. Thanks,MSI understand what she is trying to say, but I mean can i call the source code from a certain webpage to be inserted on my webpage. Allowing me to not be logged in a still view my myspace profile. not just redirecting me to myspace.com
aapolskis
03-26-2008, 02:31 PM
You need to redirect to the page you want. You do that by adding this code in between the head tag like this:<html><head><title>Website Title</title><meta http-equiv="refresh" content="1; URL=http://www.myspace.com"><meta name="keywords" content="automatic redirection"></head><body>If your browser doesn't automatically go there within a few seconds, you may want to go to <a href="http://www.myspace.com">the destination</a>manually.</body></html>Where I put http://www.myspace.com you would need to change that to your profile address.
NavneetBrar0592
03-26-2008, 02:41 PM
Yes you can use iframe in HTML to display some other page within your personal web page:E.g.:<iframe src="http://www.yahoo.com"></iframe>You can use other attributes of iframe also:height,width, frameborderE.g.<iframe src="http://www.yahoo.com" frameborder="0"></iframe>
hmmmmmmmm
03-26-2008, 02:51 PM
Hey try this, if u have any more queries pls mail me at kooldrhunk@yahoo.com<html><head></head><frameset cols=100%><frame src="http://www.google.com"></frameset></html>
vBulletin® v3.7.0, Copyright ©2000-2010, Jelsoft Enterprises Ltd.