Categorie

Archivio Articoli

Categorie

Commenti recenti

Yii Framework + MySQL – Connecting To MySQL – PHP/MySQL Development

yii-frameworkYii Framework + MySQL - Connecting To MySQL

Yii Framework + MySQL Part 1 - Connecting To MySQL - PHP/MySQL Development.

Tabs in web pages? Yes, with jQuery Tabs @ jQuery TOOLS

jQuery Tabs @ jQuery TOOLS - Tabs done right..

Replacing onClick event for IE and Chrome

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