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 hide JavaScript code from old browsers that does not support JavaScript?
How to hide JavaScript code from old browsers that does not support JavaScript?
✍: Guest
Use the below specified style of comments:
<script language=javascript>
<!--
javascript code goes here
// -->
</script>
or
Use the <NOSCRIPT> and </NOSCRIPT> tags and code the display html statements between these and this will appear on the page if the browser does not support javascript
2010-12-07, 3666👍, 0💬
Popular Posts:
How To Select Some Rows from a Table? - MySQL FAQs - SQL SELECT Query Statements with GROUP BY If yo...
Regarding C Coding Given: Line in file Contents 30 int * someIDs, theFirst, *r; 110 someIDs =GetSome...
What is difference between SITP and UTP in testing ? UTP (Unit Test Plan) are done at smallest unit ...
What is CodeDom? “CodeDom” is an object model which represents actually a source code. It is designe...
Which is the best place to store ConnectionString in Dot Net Projects? I am about to deploy my first...