Possible Duplicate:
What are valid values for the id attribute in HTML?
Hi, I'm struggeling with the jQuery UI Tabs and the needed ids. Let me give you an example:
<div id="tabs">
<ul>
<li><a href="#messages/pn1">Link</a></li>
<li><a href="#messages/pn2">Link</a></li>
</ul>
<div id="messages/pn1"></div>
<div id="messages/pn2"></div>
</div>
Now when I click on the second tab i get an exception like "jQuery UI Tabs: Mismatching fragment identifier." Isn't it allowed to user slashes in ids?