not much to work from here but sure sounds like script isn't activating

did you include jQuery.js and jQueryUI.js files? are paths to these files correct? is order correct?
did you intitiate $("#tabs).tabs(); ?
is syntax correct?

more code or link would help, markup alone doesn't tell a lot


dhaval wrote:
I am trying to have basic tabs with jquery but all the contents gets
displayed at same time, any clues


<div id="tabs">
<ul>
{% for poolname in poolnamelist %}
<li><a href=""><span>{{ poolname|escape }}
</span></a></li>
{% endfor %}
</ul>
{% for poolsequence in sequences %}
<div id="mypool{{ forloop.counter }}">
<table>
{% for sequence in poolsequence %}
<form action="" method="post">
<tr><td>{{ sequence.seqdate }}</td>
<td><input type="submit" value="ChangeDriver"/></td>
</tr>
</form>
{% endfor %}
</table>
</div>
{% endfor %}
</div>

  

Reply via email to