Why below code call error when i use sizzle:
var $myInput="#myForm input";
$($myInput+":checked").click(function(){
....
});
the $($myInput+":checked")
selector return "[object Object] :checked".
But when I simply use the variable content like $("#myForm input:checked")
work as carefully.
Thanks