Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How to get the contents of an input box using JavaScript?
How to get the contents of an input box using JavaScript?
✍: Guest
Use the "value" property of the input box object. For example:
var myValue = window.document.getElementById("MyTextBox").value;
2008-08-12, 5355👍, 0💬
Popular Posts:
Can we get a strongly typed resource class rather than using resource manager? In the previous quest...
What are the core functionalities in XML .NET framework? Can you explain in detail those functionali...
What is the difference between Authentication and authorization? This can be a tricky question. Thes...
What's the output of the following program? And why? #include main() { typedef union { int a; char b...
What Is Posting? Posting is an event that writes Inserts, Updates and Deletes in the forms to the da...