hey guys
Need a quick solution to this . Basically I have My HTML like so :
<div id="accordion">
<h3><a href="#">First header</a></h3>
<div>First content</div>
<h3><a href="#">Second header</a></h3>
<div>Second content</div>
</div>
and javascript like this
<script type="text/javascript">
$(function() {
$("#accordion").accordion({
event: "mouseover"
});
});
</script>
and include the jquery.js? But this isnt working. I know this is total noob question. What else do i need to do??