I'm working on a new look and feel and I found a bug. In the template there's a call to a JS function:
Code: Select all
<body dir="{dir}" onload="javascript:focusOnSearchField();">
Code: Select all
function focusOnSearchField()
{
if (document.getElementById('searchfield')) {
document.getElementById('searchfield').focus();
}
}
Code: Select all
<input type="text" name="search" id="suchbegriff" size="40" />
