Another 5 weeks pass.
I've contributed a lot in the past to both these forums and that site, I think I deserve a more action on this issue.
Heck, I'll even make it easy for you, replace the html...
When you write window.onload = initAll();, what happens is the initAll() function is imediately called (obviously not what you want), that's what putting brackets does. Instead, if you don't include...
CSS stands for "Cascading Style Sheets". The word "cascading" is particularly relevant to your question, it stands for the order of preference with regard to styling.
Thanks alot Doug! That's what I was hoping to hear. My main goal was to make it look clean and sort of like a brochure.
Do you think it is clear enough that the three words at the top (documentary /...
The 302 approach is sounding the most sound for this use, the script is only going to be used for an administrator panel by one person so it doesnt have to be perfect, but pressing refresh will cause...
I have a form that is using php. If the user presses refresh on the page they are sent to then the POST values are resent and the php script runs again which causes problems, is there some HTML or...
I went to the official page to download GD (http://www.boutell.com/gd/) and the only windows binary says that it is "not currently for PHP", where can I obtain a PHP version and how do I install it?...
If it is a necessary part of the application then you should make it not possible for non-js users to access the page, simple as that. If you can provide an alternative then depending on the...
Array.prototype.mergeData=function(){
this.sort();
var n=this.length, i=n;
while (i>1) if (this[--i]===this[i-1]) this[i]=this[--n];
this.length=n;
return this;
}
That function was already done by me then Jona under the title of toWordCaps on this page http://www.webdeveloper.com/forum/showthread.php?p=368112#post368112
If you have a javascript intense thread that you wish to execute on user events such as mouse move then sometimes it can make your code non-responsive as it may execute perhaps 50...