I have the following code:
jQuery('#hexVal').change(function() {
var hexvarval = jQuery('#hexVal').val();
jQuery('#thumbnail_hover_color').val(hexvarval);
});
Basically, I want to change value of #thumbnail_hover_color INPUT every time #hexVal INPUT is being changed. When I do it manually it works. When other jQuery script puts text to #hexVal then it doesn't update #thumbnail_hover_color.
Question: How do I trigger "change value" for one INPUT field each time the value is changed (anyhow) in other INPUT field? I want them to have ALWAYS the same value.


document.ready? – aziz punjani Jan 17 '12 at 15:55