Skip to main content

Search and Top Navigation

Ticket #4401: test.html


File test.html, 0.7 KB (added by ZaBlanc, March 25, 2009 03:07AM UTC)

The jQuery code that causes the problem.

<html>

<head>
	<title>jQuery UI Test</title>
	
	<!-- scripts -->
	<script type="text/javascript" src="jquery-ui-1.7/js/jquery-1.3.2.min.js"></script>
	<script type="text/javascript" src="jquery-ui-1.7/js/jquery-ui-1.7.1.custom.min.js"></script>	

	<!-- jQuery UI -->
	<link rel="stylesheet" href="jquery-ui-1.7/css/smoothness/jquery-ui-1.7.custom.css" type="text/css" media="screen, projection" />
	
	<script type="text/javascript">
		$(function() {
			$('#tabs').tabs();
		});
	</script>
</head>

<body>
	<div id="tabs">
		<ul>
			<li><a href="#tab1">Any Tab</a></li>
		</ul>
		
		<div id="tab1">
			<span class="ui-icon ui-state-default ui-corner-all ui-icon-calculator"></span>
		</div>
	</div>
</body>

</html>

Download in other formats:

Original Format