Как я могу обнаружить изменение значения скрытого ввода? Я уже пробовал эти подходы без успеха:
$('#id_inpout').live('change',function () {
var id_el = $(this).attr('id');
alert(id_el);
});
и
$('#id_inpout').change(function () {
var id_el = $(this).attr('id');
alert(id_el);
});
и
$('#id_inpout').bind('change',function () {
var id_el = $(this).attr('id');
alert(id_el);
});