Thursday, April 5, 2012

jQuery UI: tabs

jQuery UI: tabs


<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Mobile-Web-App: jQuery UI tabs</title>
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="http://code.jquery.com/ui/1.8.18/jquery-ui.js"></script>
<link rel="stylesheet" href="http://jqueryui.com/themes/base/jquery.ui.all.css">


<script type="text/javascript">
function onloaded(){
 $( "#tabs" ).tabs();
}


</script>
</head>
<body onload="onloaded();">
<h1>Mobile-Web-App: jQuery UI tabs</h1>
<div id="tabs">
 <ul>
  <li><a href="#tab1">Tab 1: Mobile-web-app <img src="http://goo.gl/BlQEX" height="20"></img></a></li>
  <li><a href="#tab2">Tab 2: jQuery UI</a></li>
  <li><a href="#tab3">Tab 3:</a></li>
 </ul>
 <div id="tab1">
  <p>Mobile-web-app</P
  <p>My Blog <a href="http://mobile-web-app.blogspot.com/">http://mobile-web-app.blogspot.com/</a></p>
 </div>
 <div  id="tab2">
  <p>jQuery UI provides abstractions for low-level interaction and animation, advanced effects and high-level, themeable widgets, built on top of the jQuery JavaScript Library, that you can use to build highly interactive web applications.
  </p>
 </div>
 <div  id="tab3">
 </div>
</div>
</body>
</html>

No comments:

Post a Comment