Click here to Skip to main content
15,894,460 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
<asp:Button ID="Buttone" runat="server" Text="Buttone" disabled="true" OnClientClick="return addcourse();" />

script

function addcourse() {

$("#inp").val("");
setTimeout(maybe, 1000);
return false;
}

function maybe() {
$("#inp").focus();
$("#inp").val("bia");
jQuery_1_7_1("#inp").autocomplete("widget").show();
}

but i view the old list (i get value from db)

how can do? Can simulate keyboard input from code??


Thanks

Claudio Amboldi
Posted
Comments
Pradip R 27-Nov-14 2:15am    
Why don't you update your code blocks with Code block feature. The code block is not readable for me as it is not aligned. Also check this link: How to Ask a good question?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900