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 have an element invoke a JavaScript on selection, instead of going to a new URL:
How to have an element invoke a JavaScript on selection, instead of going to a new URL:
✍: Guest
<script type="text/javascript">
function pseudoHitMe() {
alert("Ouch!");
}
</script>
<a href="/javascript:pseudoHitMe()">hit me</a>
2011-02-22, 3477👍, 0💬
Popular Posts:
How can I check for HTML errors? HTML validators check HTML documents against a formal definition of...
What's wrong with this initialization? char *p = malloc(10); My compiler is complaining about an ``i...
What is Concern in AOP? gA concern is a particular goal, concept, or area of interesth There are m...
What is the difference between const char* p and char const* p? In const char* p, the character poin...
What CLASSPATH Settings Are Needed to Run JUnit? It doesn't matter if you run your JUnit tests from ...