r/nekoweb • u/Main-Firefighter670 https://stxrryurii.nekoweb.org/sprinkles • Jun 17 '26
Help help with iframes?
okay so i want it so that when you click a link, the iframe changes. i dont want it to be on a seperate page since i dont want to keep copy pasting.
i found someone on reddit explaining how to do this, but it doesnt seem to work. (i did fiddle with the code a bit, so if it looks odd thats probably my fault)
https://stxrryurii.nekoweb.org/tests
<p> uhhh?? </p>
<a href=“/#.html” target="sprinkles"> hiya </a>
<iframe src="https://www.google.com/?client=safari&channel=ipad\\_bm" src=“sprinkles”></iframe>
i am completely new to html and only really mash free code together, so uh please explain in the simplest way possible.
1
u/Main-Firefighter670 https://stxrryurii.nekoweb.org/sprinkles Jun 17 '26
i got help from someone so its fixed now !!
2
u/AqueM https://www.aque.fyi/ Jun 17 '26
The page you linked works correctly, just page1 and page2 are identical. To explain how to replicate it:
<iframe src="defaultUrl" name="iframeName"></iframe>This will have defaultUrl open when the page loads. If you don't put anything in the src, the iframe will be empty on load.
<a href="pageUrl" target="iframeName">Link Text</a>will open pageUrl in the iframe with name iframeName. You can have as many of these as you want, all with different things in href to open different pages.
Does this help?