I want to send the value of property_name to headline and property_name_thumb when a user types in property_name. I works when I only use one but not both?
$('#property_name').bind('keyup keypress blur', function()
{
$('#headline','#property_name_thumb').val($(this).val());
});