Forum: HTML and CSS Mar 24th, 2006 |
| Replies: 5 Views: 8,791 I don't know that I'd say using a server-side scripting language is the "best" way. You can certainly build a good solution that way. I provide a PHP example for password-protecting pages in my... |
Forum: HTML and CSS Mar 24th, 2006 |
| Replies: 5 Views: 8,791 Password protection can be tackled a lot of different ways and they depend on:
Which OS (windows? linux?)
Which webserver (IIS? Apache?)
Do you have admin privs on the server?
Do... |
Forum: HTML and CSS Mar 18th, 2006 |
| Replies: 5 Views: 2,171 The yellow triangle you refer to means the page has a javascript error. An error in the webpage is not your fault, it is the fault of the person who created the page.
A javascript error is nothing... |
Forum: HTML and CSS Mar 18th, 2006 |
| Replies: 1 Views: 9,356 All you can do is prompt the user to set their browser to print the document landscape. They can do this in all the popular browsers using the File/Page Setup menu. I know you'd like to control it... |
Forum: HTML and CSS Mar 13th, 2006 |
| Replies: 1 Views: 1,260 What you describe is possible and not even very complicated for a javscript programmer. If you want to take a stab at it yourself, there are plenty of javascript cookie examples on the net. Some... |
Forum: HTML and CSS Mar 8th, 2006 |
| Replies: 3 Views: 6,342 Comatose is correct. Here is more detail.
<script type="text/javascript">
function ElementContent(id,content)
{
document.getElementById(id).value = content;
}
</script>
<textarea... |
Forum: HTML and CSS Mar 5th, 2006 |
| Replies: 7 Views: 1,930 Kudos to Esopo for such a thorough reply, excellent explanation of the issue, and even code to solve the problem!
I do my development with Firefox because I love the javascript tool for viewing... |
Forum: HTML and CSS Jun 20th, 2005 |
| Replies: 6 Views: 25,251 phalen, you asked if there was a solution using either HTML, CSS, or PHP.
In HTML, you simply just insert <BR /> after each letter. For example, if you had a table header containing the text... |
Forum: HTML and CSS Jun 16th, 2005 |
| Replies: 1 Views: 2,279 Check out some of the scripts at http://www.walterzorn.com/index.htm. Walter Zorn has one that covers Drag & Drop. |