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 do you assign an object's property in JavaScript?
How do you assign an object's property in JavaScript? A) obj("age") = 30; B) obj.age = 30; C) Both a and b above D) None of the above 2010-08-28, 3942👍, 0💬
How to put a "close window" link on a page?
How to put a "close window" link on a page? <a href='javascript:window.close( )'class='mainnav'> Close </a> 2010-11-30, 3928👍, 0💬
How to create an input box?
How to create an input box? prompt("What is your temperature?"); 2011-03-08, 3885👍, 0💬
What is a prompt box?
What is a prompt box? A prompt box allows the user to enter input by providing a text box. 2010-11-02, 3880👍, 0💬
What’s a quick way to append a value to an array?
What’s a quick way to append a value to an array? arr[arr.length] = value; 2010-12-28, 3877👍, 0💬
Name the numeric constants representing max, min values
Name the numeric constants representing max, min values Number.MAX_VALUE Number.MIN_VALUE 2010-12-14, 3850👍, 0💬
Popular Posts:
How can method defined in multiple base classes with same name be invoked from derived class simulta...
Where are cookies actually stored on the hard disk? This depends on the user's browser and OS. In th...
How will you freeze the requirement in this case? What will be your requirement satisfaction criteri...
How To Decrement Dates by 1? - MySQL FAQs - Introduction to SQL Date and Time Handling If you have a...
How To Retrieve the Count of Updated Rows? - Oracle DBA FAQ - Working with Database Objects in PL/SQ...