Search Results

0
votes

Href for Javascript links: “#” or “javascript:void(0)”?

Ideally you should have a real URL as fallback for non-JavaScript users. If this doesn't make sense, use # as the href attribute. I don't like using the onc …
2
votes

Last Modified Date of a file on a web site

I believe the web server must be configured to send the last-modified date in an HTTP-header, this is certainly one way. Check out section 14.29 Last-Modified of this document: …
1
vote

How do I get the contents of an <iframe> containing a different site?

What you are trying (in a sense) is cross-domain communication. This won't work in the normal way you've tried (due to the same-origin policy as noted by altCognito), but there are some solutions …
6
votes

Possible to fill a table cell with a bg color?

You could assign a class to the <td> element and then assign a bg color using the CSS background-color property for that class. …