comportamiento JavaScript
presentación CSS
estructura HTML
contenido
<p>
This is the introduction
</p>
<p style=\"font-weight:bold\">
This is the introduction
</p>
<p class=\"intro\">
This is the introduction
</p>
.intro { font-weight:bold; }
window.onload = function(){
// get links with class help
// loop through each one
link.onclick = function() {
window.open(this.href);
return false;
};
};
0 comments
Post a comment