I have an dropdown with the following in it:
<select id="shipping" name="shipping_option">
<option SELECTED value="60">R60</option>
<option value="90">R90</option>
<option value="100">R100</option>
</select>
Then, when the content of the dropdown is changed, javascript runs updateTotal(), which is the following:
function updateTotal() {
total = parseInt($("#shipping").val());
}
Now that works fine in Firefox and Safari, but not in IE. It just doesn't work. It says object doesn't support function.
Is this a bug in IE, or a bug in jQuery relating to IE? As I said, this works perfectly, just not in IE.