[jQuery] Get the checked status from radio button?

[jQuery] Get the checked status from radio button?


Using the traditional method, it worka
console.debug ( document.getElementById("type_1").checked );
But this one failed...
console.debug( $("#type_1").checked );
any method to get using jquery?
thanks.