[jQuery] Safari doesn't have selector's where as fire fox is fine
the following line will not work in safari but works in firefox:
$('#divUserSelect'+id+' select').bind("change", function(){
fixing this line to:
$('#divUserSelect'+id).find('select').bind("change", function(){
causes safari to find the element properly and bind a function to it.
any ideas on what i'm missing?
The outside element is a div with select inside of it, it is
dynamically created via an ajax call. after the call is made to get
the select, an onchange function is binded to the select to launch
other behavior on the page. this took a while to debug and I am just
wondering why this behavior is all of a sudden occuring in safari, it
was relatively stable for a past few months.