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:
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, 4068👍, 0💬
How to create a confirmation box?
How to create a confirmation box? confirm("Do you really want to launch the missile?"); 2011-03-08, 4038👍, 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, 4019👍, 0💬
How do you create a new object in JavaScript?
How do you create a new object in JavaScript? var obj = new Object(); or var obj = {}; 2010-12-21, 4010👍, 0💬
What boolean operators does JavaScript support?
What boolean operators does JavaScript support? &&, || and ! 2010-09-28, 4010👍, 0💬
How to set a HTML document's background color?
How to set a HTML document's background color? document.bgcolor property can be set to any appropriate color. 2010-07-27, 3952👍, 0💬
What is "this" keyword?
What is "this" keyword? It refers to the current object. 2010-12-28, 3919👍, 0💬
Popular Posts:
How To Enter a New Row into a Table Interactively? - Oracle DBA FAQ - Introduction to Oracle SQL Dev...
In which event are the controls fully loaded ? Page_load event guarantees that all controls are full...
How can I include comments in HTML? An HTML comment begins with "<!--", ends with "-->...
What’ is the sequence in which ASP.NET events are processed ? Following is the sequence in which the...
How To Increment Dates by 1? - Oracle DBA FAQ - Understanding SQL Basics If you have a date, and you...