[jQuery] LIST elemet dblclick() EVENT in OPERA

2007-09-30 Thread tundrax
$("my_select").dblclick() and $("my_select > option").dblclick() doesn't work in OPERA. Using latest jquery, Opera 9.02

[jQuery] Re: a drop down "quick note"

2007-06-27 Thread tundrax
Use thickbox http://jquery.com/demo/thickbox/ ;)

[jQuery] Problem with SELECT OPTIONS selected item

2007-06-27 Thread tundrax
function(json){ $('#region').empty(); for(var i = 0; i < json.length; i++) { $('#region').append('' + json[i].name + ''); } $('#region').prepend(''+defaultSelectRegion +'').removeAttr('disabled'); }); Above is a code generating a select options from json data retrieved from ajax request.

[jQuery] OPTGROUP in Opera

2007-04-04 Thread tundrax
function getRegions(country, div_id){ var i; $.getJSON("tools/getregions.php", { ctr: country }, function(json){ for(var i = 0; i < json.length; i++) { opts = ""; for(var j = 0; j < json