I cant seem to get the following working:
$(\'input:not([type=radio][type=checkbox])\').live(\'click\', function() { alert(\"You haven\'t clicked a radio or
You can also exclude items like this:
$('input').not('[type=radio], [type=checkbox]').live('click', function() { alert("You haven't clicked a radio or checkbox!"); });