jQuery tab ui won't get content of other tabs
I am using the jQuery tab ui and I have 4 tabs that has content. The first tab is loaded automatically but when the other 3 tabs are clicked, they are still blank - no content appears, just what is on the first tab. I'm sure there's a code that calls it, but I don't know enough about coding anything to understand. You can see the tab plug-in app in action here
http://pbrunson2.mydevryportfolio.com/WGD242/.
The code that I have on each page for the jQuery tab plug-in is here:
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Brunson Home</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script>
<script type="text/javascript">
$(function() {
$( "#tabs" ).tabs();
});
</script>
</head>
<body>
<div id="tabs">
<ul>
<li><a href="#home">Nome</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#gallery">Gallery</a></li>
</ul>
<div id="home">
<p>Proin elit arcu, rutrum commodo, vehicula tempus, commodo a, risus. Curabitur nec arcu. Donec sollicitudin mi sit amet mauris. Nam elementum quam ullamcorper ante. Etiam aliquet massa et lorem. Mauris dapibus lacus auctor risus. Aenean tempor ullamcorper leo. Vivamus sed magna quis ligula eleifend adipiscing. Duis orci. Aliquam sodales tortor vitae ipsum. Aliquam nulla. Duis aliquam molestie erat. Ut et mauris vel pede varius sollicitudin. Sed ut dolor nec orci tincidunt interdum. Phasellus ipsum. Nunc tristique tempus lectus.</p>
</div>
<div id="about">
</div>
<div id="contact">
</div>
<div id="gallery">
</div>
</body>
</html>
Is there a way to get this plug-in to load the content of the other tabs when each tab is clicked? All the .html's are on the site and in the folder and the plug-in does bring other things to the pages when it's loaded because the .jpg at the top is in the folder and that works just fine with the plug-in.