Categorie

Archivio Articoli

Categorie

Commenti recenti

Replacing onClick event for IE and Chrome

closeQuesto articolo è stato pubblicato 13 anni 7 mesi 19 giorni giorni fa quindi alcuni contenuti o informazioni presenti in esso potrebbero non essere più validi. Questo sito non è responsabile per eventuali errori causati da questo problema.

One strange difference in my opinion between Firefox and Internet Explorer and most strange of all also a difference to Google Chrome is that the onclick-event is not recnognized. Here is a simple example just to illustrate.

<select id="category">
<option value="3" onclick="getCategories(3);">ACategoryWithCategoryNumberThree</option>
</select>

This works fine in Firefox, i.e. the function 'getCategories' gets called when choosing an object in the select box. This does not work for the other browsers though, the calls are not made and there are even no errors raised.

The solution is to make the function call on the select-tag instead using the onchange-event referencing the value of the select tag (which will hold the value of the chosen option-tag),

<select id="category" onchange="getCategories(document.getElementById('category').value);">
<option value="3">ACategoryWithCategoryNumberThree</option>
</select>

This way it will work for all three browsers!

Fonte: http://www.wohill.com/design/335/Replacing-the-onclick-event-for-IE-or-Chrome.html

Comments are closed.