Categories:
.NET (357)
C (330)
C++ (184)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (2)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
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> 2008-10-07, 4856👍, 0💬
How to create a confirmation box?
How to create a confirmation box? confirm("Do you really want to launch the missile?"); 2009-01-06, 4827👍, 0💬
How to create an input box?
How to create an input box? prompt("What is your temperature?"); 2009-01-13, 4792👍, 0💬
What is === operator?
What is === operator? ==== is strict equality operator, it returns true only when the two operands are having the same value without any type conversion. 2008-12-09, 4790👍, 0💬
How to comment JavaScript code?
How to comment JavaScript code? Use // for line comments and /* */ for block comments 2008-10-14, 4752👍, 0💬
nodeList is almost like an array except:
nodeList is almost like an array except: A) it has an item method. B) it is read-only. C) both a and b above. D) none of the above. 2010-08-28, 4667👍, 0💬
Popular Posts:
How To Increment Dates by 1? - Oracle DBA FAQ - Understanding SQL Basics If you have a date, and you...
How To Get the Minimum or Maximum Value of an Array? - PHP Script Tips - PHP Built-in Functions for ...
Which one of the following statements is TRUE in regard to overloading the ++ operator? 1 You cannot...
How To Wirte a Simple JUnit Test Class? This is a common test in a job interview. You should be able...
How to set a cookie with the contents of a textbox ? Values stored in cookies may not have semicolon...