show/hide this revision's text 2 added 7 characters in body

Apparently IE doesn't consider the drop down bit part of the select element. It's doable, but it takes a bit of cheating with blur expando properties and focus blur/focus events to enable and disable the 'hide' effect to stop it kicking in when the mouse enters the drop-down part of the element.

Have a go with this:

$(function() {
	var expand   = function(e)function(){ $(this).width(600) }
	var contract = function(e)function(){ if (!this.noHide) $(this).width(50) }
	var focus    = function(){ this.noHide = true }
	var blur     = function(){ this.noHide = false; contract.call(this) }
	$('#TheSelect')
		.hover(expand, contract)
		.focus(focus)
		.click(focus)
		.blur(blur)
		.change(blur)
});

(Apologies if this isn't how one is supposed to use jQuery - I've never used it before :))

show/hide this revision's text 1

Apparently IE doesn't consider the drop down bit part of the select element. It's doable, but it takes a bit of cheating with blur and focus events to enable and disable the 'hide' effect to stop it kicking in when the mouse enters the drop-down part of the element.

Have a go with this:

$(function() {
	var expand = function(e){ $(this).width(600) }
	var contract = function(e){ if (!this.noHide) $(this).width(50) }
	var focus = function(){ this.noHide = true }
	var blur = function(){ this.noHide = false; contract.call(this) }
	$('#TheSelect')
		.hover(expand, contract)
		.focus(focus)
		.click(focus)
		.blur(blur)
		.change(blur)
});

(Apologies if this isn't how one is supposed to use jQuery - I've never used it before :))