Frameset
Frameset
Hello everyone,
Currently I picked up an old project from my work to put it in a new style and functionality.
Though the core of this project is build in executables that works with framesets and in framesets.
Now I'am using JQueryUI and the full JQuery developer version.
At first I tried to use $("tag").tab();
But this didn't load my frameset only everything what was around.
Because I thought it was the problem of JQueryUI is used the ajax load command
like: $("tag").load("myframesetpage.html");
This also doesn't work.
Is there anyone that can tell me if JQuery is just blocking the loadings framesets(perhaps because framesets may not be made in <body> tag)
or that I'am doing something wrong.
This is a preview of HTML I also tried to use:
script(also with the load function commented out):
-
<script type="text/javascript">
$(document).ready(function(){
$("#tabs").tabs();
/*$("a").click(function(e){
e.preventDefault();
$("#test").load($(this).attr("href"));
});*/
});
</script>
index.html:
-
<div id="tabs">
<ul>
<li><a href="test.html">test1</a></li>
<li><a href="framesettest.html">test</a></li>
</ul>
</div>
framesettest.html:
-
<html>
<head>
</head>
<frameset rows="55,*">
<frame src="test.html" />
<frame src="test2.html" />
</frameset>
</html>
I look forward to your reactions.
Kind Regards,
Martijn Smidt