when you click on \'Ask question\' here in Stackoverflow you see a text \"What\'s your programming question? Be descriptive.\"
i want the same thing and all i need f
$('#txtYourTextBox').blur(function () { var val = $("#txtYourTextBox").val(); $("#txtYourTextBox").val(''); setTimeout(function () { $("#txtYourTextBox").val(val); }, 20); });