Hi everybody!
I'm using iframes in my most recent WebDev project called "Felix" and would like to know how I can use Javascript to make a back button for the iframe. Here's the code I have:
When I use that code, I get a JScript error that pHubiframe_reso urce doesn't support the history.go function, if I remember correctly. Thanks in advance.
I'm using iframes in my most recent WebDev project called "Felix" and would like to know how I can use Javascript to make a back button for the iframe. Here's the code I have:
Code:
<input type="button" style="width:64px" onclick="javascript:document.getElementById('pHubiframe_resource').history.go(-1)" value="←Back" />
Comment