So I have elected to play with jQuery 1.4 - and I am noticing something right off. This is not a real project ,so the code here should be taken with a grain of salt. I wrote it to reproduce the error.
Essentially, try to follow the jQuery UI Tabstrip AJAX loading example - you will get awkward results. For instance, the tabs link as ...
ui-tabs-[object%20Object]
- Any idea what this is, and how to resolve it?
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js"></script>
<link href="css/ui.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
$(document).ready(function() {
$("#tabstrip").tabs();
});
</script>
</head>
<body>
<div id="tabstrip">
<ul>
<li><a href="http://www.google.com">Google</a></li>
<li><a href="http://www.microsoft.com">Microsoft</a></li>
<li><a href="http://www.java.com">Java</a></li>
<li><a href="http://www.asp.net/mvc">ASP.NET MVC</a></li>
<li><a href="http://www.getfirefox">Mozilla FireFox</a></li>
</ul>
</div>
</body>
</html>