I have 5 text-boxes for [ Title, Name, Keyword, Description and URL] input
$("#TxtPageTitle").keyup(function () {
$("#TxtPageName").val($(this).val());
$("#TxtPageKeywords").val($(this).val());
$("#TxtPageDescription").val($(this).val());
$("#TxtPageURL").val($(this).val());
});
I'm using JQuery's Keyup event to handle replication, When I type something in Title (text-box) it'll get filled in all other 4 text-boxes.
Problem is: I'll first type something in Title (text-box) and it'll filled in all other text-boxes and later I'll edit the values of all 4 text-boxes. again if change the value Title (text-box) then old values of all other 4 text-boxes will be changed.
What I want is The Keyup method should only work on first entry. so I can prevent this problem.
.unbind()thekeyupwhen you want the results to stay static: api.jquery.com/unbind – m90 Mar 29 '12 at 10:18