Forum: HTML and CSS Oct 10th, 2006 |
| Replies: 15 Views: 24,770 After a certain period of time, you cannot edit your post.
Your page is missing a doctype, so I'm not sure which version of HTML you're writing. However, since all the tags are lowercase, I can... |
Forum: HTML and CSS Aug 1st, 2006 |
| Replies: 9 Views: 1,871 Ok... so I guess the essential nugget of information you were after is the "descendant selector" syntax. Note that it selects all descendants, not just child elements, but also their child elements,... |
Forum: HTML and CSS Jul 20th, 2006 |
| Replies: 24 Views: 3,205 The Visual QuickStart series is good. The book I learned basic HTML coding from was by Elizabeth Castro. That was years ago, and I'm sure the book has been updated to cover CSS, and DHTML, by now.
... |
Forum: HTML and CSS Jun 27th, 2006 |
| Replies: 6 Views: 2,791 Have an "onload" function. The script would look at the document's referrer. If the documents are named in a logical way, for example "page1", "page2", then you can do a substr on the name, get the... |
Forum: HTML and CSS Jun 13th, 2006 |
| Replies: 14 Views: 19,315 To change the innerHTML of an element, you need to use the (wait for it) "innerHTML" property of that element.
<html>
<body>
<a href="#" onclick="this.innerHTML='<strong>You changed... |
Forum: HTML and CSS May 22nd, 2006 |
| Replies: 12 Views: 4,550 DOM methods have replaced document.write(). You can create elements (nodes), set their attributes, and invoke their methods. You've seen some of this, for example:
... |
Forum: HTML and CSS Feb 17th, 2006 |
| Replies: 19 Views: 4,646 Next is to open a window. In this version, we add back our HREF's so the links actually go somewhere.
Notice the new onclick attributes. It now looks like:
return link_click(this);
What... |