User d34dIO - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T01:40:24Zhttp://stackoverflow.com/feeds/user/119369http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/987534/how-can-i-use-templates-to-generate-static-web-pages/988898#9888980Answer by d34dIO for How can I use templates to generate static web pages?d34dIO2009-06-12T20:32:37Z2009-06-12T20:32:37Z<p>Framesets would be the way to do this without any script or serverside influnces.</p>
<pre><code><frameset rows="100,*,100">
<frame name="header" src="header.html" />
<frame name="content" src="content.html" />
<frame name="footer" src="footer.html" />
</frameset>
</code></pre>
<p>HTML5 framesets:<a href="http://www.w3schools.com/tags/html5_frameset.asp" rel="nofollow">http://www.w3schools.com/tags/html5_frameset.asp</a></p>
<p>This is a very dated solution, most web hosts will support server side includes or you could use php to include your files</p>
<p><a href="http://php.net/manual/en/function.include.php" rel="nofollow">http://php.net/manual/en/function.include.php</a></p>
<p>Cheers</p>
http://stackoverflow.com/questions/988460/can-the-padding-margin-on-radio-buttons-in-ie6-ie7-be-reduced-to-0-1px/988764#9887640Answer by d34dIO for Can the padding/margin on radio buttons in IE6/IE7 be reduced to 0-1px?d34dIO2009-06-12T20:01:42Z2009-06-12T20:01:42Z<p>Without seeing code I think your running into this "IE inherited margin bug: form elements and hasLayout"</p>
<p>Positioniseverything.net has a good write up on it: <a href="http://www.positioniseverything.net/explorer/inherited_margin.html" rel="nofollow">http://www.positioniseverything.net/explorer/inherited_margin.html</a></p>
<p>Cheers</p>
http://stackoverflow.com/questions/988380/essential-dojo/988523#9885234Answer by d34dIO for Essential Dojod34dIO2009-06-12T19:16:43Z2009-06-12T19:16:43Z<p>I too just dove head first into DOjo, they have a good api documentation at <a href="http://api.dojotoolkit.org/" rel="nofollow">http://api.dojotoolkit.org/</a> dojo campus has some good examples of the plug ins.</p>
<p>If you ask me the O'Reilly Dojo the Definitive Guide is the best dojo book on the market.</p>
<p>I also would like any tips and pointers from the dojo masters</p>
<p>Cheers</p>
http://stackoverflow.com/questions/988363/how-do-you-debug-your-javascript-code/988417#9884172Answer by d34dIO for How do you debug your javascript code?d34dIO2009-06-12T18:58:58Z2009-06-12T19:16:31Z<p>I use a few tools: <a href="http://www.fiddler2.com/fiddler2/" rel="nofollow">Fiddler</a>, Firebug, & Visual Studio. I hear IE8 has a good built-in debug.</p>
<p>Cheers</p>
http://stackoverflow.com/questions/1012641/why-doesnt-my-background-stretch-behind-my-contentbox/1012934#1012934Comment by d34dIO on Why doesn't my background stretch behind my contentbox?d34dIO2009-06-18T14:27:32Z2009-06-18T14:27:32ZThis would be the solution I found also, Vote up for Emily