Character encoding in tabs? (urlencode hinders tab selection)
Swedish characters get substituted when setting the tabTemplate
option.
For example using "ö" in the href:
var $tabs = $("#tabs").tabs('option', 'tabTemplate', '<li><a
href="#{href}">#{label}</a></li>');
becomes:
<li><a href="#%C3%B6">ö</a></li>
This renders the tab unselectable ....
What to do?
thanks.