[jQuery] livequery issue

[jQuery] livequery issue


here is a small portion on my code
$('select[@name=destination]').livequery('change', function()
{
reset_data(0);
var destination_var = $('select[@name=destination]');

$('#week').load('/lib/ajax/price_buster.php', {'get': 'week',
'destination':
destination_var.val()});
$('#buster_info tr:eq(1)').show();
});

$('select[@name=nights]').livequery('change', function()
{
reset_data(2);
var destination_var = $('select[@name=destination]');
var nights_var = $('select[@name=nights]');
var week_var = $('select[@name=week]');

$('#options').load('/lib/ajax/price_buster.php', {'get': 'options',
'destination':
destination_var.val(),
'nights': nights_var.val(),
'week': week_var.val()});
$('#buster_info tr:eq(3)').show();
});
I basically have this for about 6-7 select boxs. Now the jquery works fine
in IE &FF but when i do this is Safari 3 beta, safari crash. Does anything
look wring with the code that would cause it to crash? could this just be
safari beta issue?
--
View this message in context: http://www.nabble.com/livequery-issue-tf4311803s15494.html#a12275312
Sent from the JQuery mailing list archive at Nabble.com.