Answers

Dec 29, 2006 - 07:10 AM
If you are speaking of HTML includes
there is the old "Server side includes" directive
that works with Apache as well as MS IIS.
For Apache servers you should use the .shtml extension
Apache SSI: http://httpd.apache.org/docs/1.3/howt...
MS IIS SSI: http://www.microsoft.com/WINDOWS2000/...
there is the old "Server side includes" directive
that works with Apache as well as MS IIS.
For Apache servers you should use the .shtml extension
Apache SSI: http://httpd.apache.org/docs/1.3/howt...
MS IIS SSI: http://www.microsoft.com/WINDOWS2000/...

Dec 29, 2006 - 07:36 AM
Is there anything that will just work on my PC on the client side?

Dec 29, 2006 - 01:23 PM
For client side:--start of script.js--function gen_table_at_id( my_id) {var mydiv = document.getElementById( my_id) ;mydiv.innerHTML = "
" ;}--end of script.js-- !
Cell1 | " +"Cell2 | " +"

Jan 02, 2007 - 02:22 AM
xarcus,
not sure who you are, but you're the man. That works great and saves me a ton of time for these prototypes. One more follow up question. On the html page where it says:
Is there any way to load multiple functions at the same time from the same script.js file? I want to put all of my includes in one file and wanted to see how I would load more than one of them in the body tag.
not sure who you are, but you're the man. That works great and saves me a ton of time for these prototypes. One more follow up question. On the html page where it says:
Is there any way to load multiple functions at the same time from the same script.js file? I want to put all of my includes in one file and wanted to see how I would load more than one of them in the body tag.

Jan 02, 2007 - 02:33 AM
Nevermind, I just found out what the answer is.
To load more than one function, you just need to insert a semicolon ";" between functions on the onload command
Example:
Thanks for the help.
To load more than one function, you just need to insert a semicolon ";" between functions on the onload command
Example:
Thanks for the help.
Add New Comment