I am new to javascript and have a very basic question:
I have this in my HTML
Total Cost: <input type="text" name="total" id="total" class="MyInput" />
I want to assign a value to this textbox at the program startup, for that I am using document.ready, but its not working.
<SCRIPT LANGUAGE="JavaScript">
$(document).ready(function() {{
$("#total").value = "2";
});
What is the correct way of doing this?

scripttag? – Ash Burlaczenko Nov 28 '11 at 10:19