Salve avrei qualche domanda da fare riguardo questo codice del search box presente sulla piattaforma vbulletin:
Ho visto che è presente questo codice:
onclick="document.getElementById('navbar_search').submit;"
che sicuramente è collegato all'html:
id="navbar_search" class="navbar_search"
Sapete quale è la sua funzione? Perchè ho provato a cercare su internet ma non sembrano essere spiegazioni adatte a questo caso...
Codice:
<vb:if condition="$vboptions['enablesearches']">
<div id="globalsearch" class="globalsearch">
<form action="search.php?{vb:raw session.sessionurl}do=process" method="post" id="navbar_search" class="navbar_search">
<vb:comment><input type="hidden" name="s" value="{vb:raw session.sessionurl}" /></vb:comment>
<input type="hidden" name="securitytoken" value="{vb:raw bbuserinfo.securitytoken}" />
<input type="hidden" name="do" value="process" />
<span class="textboxcontainer"><span><input type="text" value="" name="query" class="textbox" tabindex="99"/></span></span>
<span class="buttoncontainer"><span><input type="image" class="searchbutton" src="{vb:stylevar imgdir_button}/search<vb:if condition="$stylevar['textdirection'] == 'rtl'">_rtl</vb:if>.<vb:if condition="is_browser('ie') AND !is_browser('ie', 7)">gif<vb:else />png</vb:if>" name="submit" onclick="document.getElementById('navbar_search').submit;" tabindex="100"/></span></span>
</form>
<ul class="navbar_advanced_search">
<li><a href="search.php{vb:raw session.sessionurl_q}" accesskey="4">{vb:rawphrase advanced_search}</a></li>
{vb:raw template_hook.navbar_advanced_search}
</ul>
</div>
</vb:if>
Ho visto che è presente questo codice:
onclick="document.getElementById('navbar_search').submit;"
che sicuramente è collegato all'html:
id="navbar_search" class="navbar_search"
Sapete quale è la sua funzione? Perchè ho provato a cercare su internet ma non sembrano essere spiegazioni adatte a questo caso...
Ultima modifica di un moderatore: