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 boolean operators does JavaScript support?
What boolean operators does JavaScript support? &&, || and ! 2010-09-28, 3823👍, 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, 3812👍, 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, 3789👍, 0💬
What is "this" keyword?
What is "this" keyword? It refers to the current object. 2010-12-28, 3740👍, 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. 2011-02-01, 3709👍, 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, 3701👍, 0💬
How to comment JavaScript code?
How to comment JavaScript code? Use // for line comments and /* */ for block comments 2010-12-07, 3694👍, 0💬
Popular Posts:
How To Wirte a Simple JUnit Test Class? This is a common test in a job interview. You should be able...
How can I construct preprocessor if expressions which compare strings? You can't do it directly; pre...
What is the purpose of Replication ? Replication is way of keeping data synchronized in multiple dat...
What will happen in these three cases? if (a=0) { //somecode } if (a==0) { //do something } if (a===...
Can you explain in brief how the ASP.NET authentication process works? ASP.NET does not run by itsel...