mirror of
https://github.com/jquery/jquery.git
synced 2026-01-24 20:48:01 -05:00
.live("div div") was failing due to the extra space in the selector (which conflicted with multiple event binding in .bind).
This commit is contained in:
@@ -573,7 +573,7 @@ function liveHandler( event ){
|
||||
}
|
||||
|
||||
function liveConvert(type, selector){
|
||||
return ["live", type, selector.replace(/\./g, "_")].join(".");
|
||||
return ["live", type, selector.replace(/\./g, "`").replace(/ /g, "|")].join(".");
|
||||
}
|
||||
|
||||
jQuery.extend({
|
||||
|
||||
Reference in New Issue
Block a user