I checked out the example given on http://naghsheh.info/Pivot/Pivot.htm and tried to get it work on a simple htm page. I have downloaded jquery.metro.js, jquery-1.6.1.min.js, and jquery.metro.css files and kept it in the same folder as html file. But the final html doesn't work as given. Below is the code I am using

<html>
<head>
<script type="text/javascript" src="jquery-1.6.1.min.js"></script>
<script type="text/javascript" src="jquery.metro.js"></script>
<link type="text/css" rel="Stylesheet" href='jquery.metro.css' />



</head>

<body>
<script type="text/javascript">
$(function () {
$("div.metro-pivot").metroPivot();
});
</script>
<div class='metro-pivot'>
<div class='pivot-item'>
    <h3>your header text</h3> 
    your content 1

</div>

<div class='pivot-item'>
    <h3>header two</h3> 
    your content more content 2
</div>
</div>
</body>
</html>

Please help me out!

link|improve this question

50% accept rate
Is there any js-errors? Are you successlully enter $(function () ? – VMAtm Jun 9 '11 at 9:18
I dont know! :( neither know how to check it! :( – Gaurav N Jun 10 '11 at 7:11
$("div.metro-pivot").metroPivot(); - replace this with alert`('Here');`. Also, in Firefox use the Tools -> Error Concole to view javascript errors on this page – VMAtm Jun 10 '11 at 7:26
well I ran it again in firefox and its running fine! I guess I am having this problem only in IE! – Gaurav N Jun 16 '11 at 9:01
feedback

1 Answer

up vote 0 down vote accepted

I noticed that mine stopped working when I upgraded jQuery to 1.6.1. I had to revert to jQuery 1.5.1.

Also, put the script tag with "$("div.metro-pivot").metroPivot();" at the end of the page, after the divs have been loaded.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.