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 create a popup warning box?
How to create a popup warning box? alert('Warning: Please enter an integer between 0 and 100.'); 2009-01-06, 4840👍, 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; 2008-10-28, 4825👍, 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> 2008-10-07, 4731👍, 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, 4698👍, 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, 4692👍, 0💬
How to create an input box?
How to create an input box? prompt("What is your temperature?"); 2009-01-13, 4686👍, 0💬
How to comment JavaScript code?
How to comment JavaScript code? Use // for line comments and /* */ for block comments 2008-10-14, 4650👍, 0💬
Popular Posts:
From performance point of view how do they rate ? Repeater is fastest followed by Datalist and final...
How To Enter Binary Numbers in SQL Statements? - MySQL FAQs - Introduction to SQL Basics If you want...
How can method defined in multiple base classes with same name be invoked from derived class simulta...
What is shadowing ? When two elements in a program have same name, one of them can hide and shadow t...
If we have the following in a Java code: String s="abc"; String s2="abc"; Then what will be output o...