Problem with this jquery:
$(".aaazzz").live("keyup", function(){
one = $("#amo").attr('value');
two = $("#ame").attr('value');
}
#amo is input field and #ame is select. The problem is that when I change something in #amo, it changes in real time but with select(#ame) it does not happen. Of course if I change #ame and then after change #amo it works, but how to get them both working?
Thank you in advance