Código HTML:
<!DOCTYPE html>
<html>
<head>
<script src="jquery-1.4.js"></script>
<script src="jquery.valAlerter.js"></script>
<script>
$( function (){
$('#nombre, input[name=sexo], #pais').valAlerter();
});
</script>
</head>
<body>
<input id="nombre" type="text" name="nada" value="" /><br />
Sexo: <input type="radio" name="sexo" value="masculino" /> M <input type="radio" name="sexo" value="femenino" /> F <br />
Pais: <select id="pais" name="pais">
<option>Seleccionar</option>
<option>Argentina</option>
<option>Paraguay</option>
<option>Uruguay</option>
</select>
</body>
</html>
archivo jquery.valAlerter.js
Código HTML:
( function($) {
$.fn.valAlerter = function(){
return this.each( function() {
$(this).change( function () {
alert( $(this).val() );
});
});
}
})(jQuery);