User mike nvck - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T04:18:50Z http://stackoverflow.com/feeds/user/36531 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/737307/javascript-is-it-better-to-use-innerhtml-or-lots-of-createelement-calls-to-add/737440#737440 0 Answer by mike nvck for JavaScript: Is it better to use innerHTML or (lots of) createElement calls to add a complex div structure? mike nvck 2009-04-10T12:10:28Z 2009-04-10T14:08:06Z <p>For a complex problem like this, I usually use the innerHTML methods because they are a)easier to read and modify code-wise b)more convenient to use in loops. As the top post says, they unfortunately fail in IE(6,7,8) on <code>&lt;table&gt;</code>, <code>&lt;thead&gt;</code>,<code>&lt;tbody&gt;</code>,<code>&lt;tr&gt;</code>,<code>&lt;tfoot&gt;</code>, <code>&lt;select&gt;</code>, <code>&lt;pre&gt;</code> elements.</p> http://stackoverflow.com/questions/700684/content-ideas-for-a-short-javascript-lesson/700744#700744 0 Answer by mike nvck for Content ideas for a short JavaScript lesson. mike nvck 2009-03-31T12:45:14Z 2009-03-31T12:45:14Z <pre><code>1) basic stuff (skip if they know it) - how to make it part of standard HTML page: &lt;script src='foo.js'&gt;&lt;/script&gt;, &lt;div onclick='functionDefinedInFoo();'&gt;Click me&lt;/div&gt;... 2) functions (passing values and events, calling another functions), add if() and for()/while() loops if they do not code 3) AJAX (with simple PHP example), AJAX kicks ass, just do the simplest default GET script to get a lot of "wow how did you do that"s 4) DOM methods (appendChild etc.) 5) CSS manipulation (element.style.whatever) 6) window.whatever (print(), close(), onresize/onload = function(){...;}) </code></pre> <p>basically, it depends on their level of experience but if they do not know much about JS, using the 30 min to teach them how to do simple yet intriguing stuff is more valuable than just talking theory IMO</p> <p>EDIT: oops jumped the gun xD you said they all know quite a bit about JS</p> <p>I would pick a topic you have most experience implementing and talk about the unique stuff you run into now and then. The special cases, making it cross browser compatible, irregular stuff you spent a lot of time figuring out AFTER you learned the main method. And AJAX, lots of it still ;P</p> http://stackoverflow.com/questions/681087/how-can-i-detect-a-scrollbar-presence-using-javascript-in-html-iframe/681170#681170 1 Answer by mike nvck for How can I detect a Scrollbar presence ( using Javascript ) in HTML iFrame ? mike nvck 2009-03-25T11:24:31Z 2009-03-26T07:54:22Z <p>I do not think this can be done if the iframe content comes from another domain due to JavaScript security limitations.</p> <p>EDIT: In that case, something along the lines of giving the iframe a name='someframe' and id='someframe2' and then comparing frames['someframe'].document.body.offsetWidth with document.getElementById('someframe2').offsetWidth should give you the answer.</p> http://stackoverflow.com/questions/335598/html-scrollbar-jump-by-itself/681178#681178 0 Answer by mike nvck for html - scrollbar jump by itself mike nvck 2009-03-25T11:26:53Z 2009-03-25T11:26:53Z <p>Are you sure the object causing the problem is not an <code>&lt;a href='#'&gt;&lt;div onclick='yourJavaScriptFunction()'&gt;...&lt;/div&gt;&lt;/a&gt;</code> or something similar?</p> http://stackoverflow.com/questions/673431/how-to-extract-the-value-of-a-field-in-an-iframe-into-the-main-page/673602#673602 0 Answer by mike nvck for how to extract the value of a field in an iframe into the main page mike nvck 2009-03-23T14:37:16Z 2009-03-23T14:37:16Z <p>If your page and the iframe content come from different domains, this will be quite tricky. I was recently forced to find a workaround for this and managed pull it off with an AJAX call to a PHP script utilizing file_get_contents() but it is not very copyright compliant or secure...</p> http://stackoverflow.com/questions/673107/javascript-getting-undefined-when-trying-to-get-arrays-prototype/673122#673122 0 Answer by mike nvck for Javascript - Getting 'undefined' when trying to get array's prototype mike nvck 2009-03-23T11:59:42Z 2009-03-23T11:59:42Z <p>Not really my cup of tea, but does this way of defining it make "obj" an array? Tried</p> <pre><code>obj = new Array(); obj[0] = "a"; obj[1] = "b"; </code></pre> <p>?</p> http://stackoverflow.com/questions/671701/javascript-onchange-limitations/672601#672601 0 Answer by mike nvck for Javascript .onchange limitations mike nvck 2009-03-23T08:56:08Z 2009-03-23T08:56:08Z <pre><code>window.onresize=function(){ exampleFunction(); } </code></pre> <p>is what I do. I am not very keen of onchange, if you changed the element with JS, you can also call the event in the same JS. (why do it like: JS -> element -> JS, when you can go: JS -> element and JS)</p> http://stackoverflow.com/questions/642991/whats-the-correct-way-for-a-cross-browser-html-layout/643049#643049 0 Answer by mike nvck for What's the correct way for a cross-browser HTML layout? mike nvck 2009-03-13T14:50:23Z 2009-03-13T15:27:06Z <p>There are not many cases where you HAVE to use JavaScript for formatting/design. Only exception I can recall right now is reformatting the page when user resizes the window.</p> <p>This sort of thing can be 100% done with plain HTML + CSS. It may need conditional stylesheet for IE6 and mobile platforms, but every single web I made so far had the same stylesheet for IE7 and FF3 and worked ok with DIVs instead of tables. You just need to think, google, and improvise (in this order ;).</p> <p>However, I do not think this particular case can be achieved without a DIV for each table, row, and cell which means you will be doing pretty much the same thing as with <code>&lt;table&gt;, &lt;tr&gt; and &lt;td&gt;</code>. Displaying tabular data in tables is semantically fine so if you really need it as a table, not as a web layout, just save yourself the trouble and use the HTML table markup.</p> http://stackoverflow.com/questions/642040/firefox-onkeydown-detect-pressed-key/642111#642111 2 Answer by mike nvck for Firefox onkeydown detect pressed key mike nvck 2009-03-13T10:34:26Z 2009-03-13T14:44:36Z <p>I wrote this yesterday, works in both FF and IE => </p> <pre><code>//execute this during initialization document.onkeydown = function(event){ var holder; //IE uses this if(window.event){ holder=window.event.keyCode; } //FF uses this else{ holder=event.which; } keyz(holder); } function keyz(holder){ if(key == /*desired code*/){ /*execute stuff*/ } } </code></pre> <p>you will want to replace document.onkeydown with [your input].onkeydown</p> http://stackoverflow.com/questions/630118/how-can-i-restrict-the-use-of-other-applications-during-an-online-exam/630232#630232 0 Answer by mike nvck for How can I restrict the use of other applications during an online exam? mike nvck 2009-03-10T13:43:30Z 2009-03-10T13:43:30Z <p>Only way I am aware of would be:</p> <p>Explicitly state that switching out of the current tab/window is forbidden beforehand.</p> <p>Close the exam and declare it void if the rule is violated. (track focus/window resize with JS).</p> <p>Reliably blocking anything outside the current browser window by JS is impossible. The user can always launch different browser with its own JS engine and do whatever he wants.</p> http://stackoverflow.com/questions/626006/what-should-i-consider-when-building-a-content-management-system-cms/626177#626177 2 Answer by mike nvck for What should I consider when building a Content Management System (CMS)? mike nvck 2009-03-09T13:16:21Z 2009-03-09T13:16:21Z <p>I would totally research existing CMS's, pick 3 to 5 of the ones suitable for the environment (MSSQL/MySQL? ASP/PHP?), then install each one, try to throw a basic skeleton of the site together on each of them, see what modules already exist and try to code a small custom module for it on your own. Then pick the one you found the most convenient.</p> <p>Honestly, writing your own CMS is too time consuming, trust me, I tried. You want to find a solution that fits these:</p> <p>1) your coders can extend it 2) your graphics people can easily apply styles to it 3) your users/editors can easily add content</p> <p>(Unless you get paid for trying to code your own system from the scratch and use it as a learning experience for yourself. I can understand that. And feel sorry for the users ;)</p> http://stackoverflow.com/questions/626059/teammember-over-estimating-abilities-how-to-help-him-grow/626107#626107 2 Answer by mike nvck for Teammember over-estimating abilities. How to help him grow? mike nvck 2009-03-09T12:56:51Z 2009-03-09T12:56:51Z <p>I think everyone has a certain "learning path" he needs to walk in order to become a real coder. Unfortunately, each of us comes with different set of skills and attitudes so the paths also tend to start in various stages and branch out differently. Each step of the long walk uncovers the overall horizon a bit further and sometimes even shifts your personal coding paradims and forces you to appreciate and use approachases you considered "overcomplicated" couple of steps before. I think you need to figure out what is the "next step" for this particular guy, which may be quite difficult or even impossible considering the "been doing it like this for 20 years" attitude.</p> http://stackoverflow.com/questions/617876/horizontal-scroll-bar-in-ie6/618329#618329 0 Answer by mike nvck for Horizontal scroll bar in IE6 mike nvck 2009-03-06T10:14:10Z 2009-03-06T13:32:37Z <p>tried</p> <pre><code>html{ width:100%; overflow-x: hidden; } body{ width:100%; overflow-x: hidden; } </code></pre> <p>yet?</p> <p><strong>EDIT:</strong></p> <p><em>This works but hides right side edge content. See the link screenshot. <a href="http://shivanand.in/temp/rightside-edges-hidden.gif" rel="nofollow">http://shivanand.in/temp/rightside-edges-hidden.gif</a> – Shivanand</em></p> <p>Hmm, that is weird. Are you using any position: absolute DIVs with width set in pixels (not %) that are causing this to happen?</p> http://stackoverflow.com/questions/611378/firefox-this-function/614163#614163 1 Answer by mike nvck for FireFox this Function... mike nvck 2009-03-05T09:55:47Z 2009-03-05T09:55:47Z <p>you could also go: </p> <pre><code>&lt;input type='button' name='2ndButton' id='2ndButton' onclick='drvFunc(this.id)'&gt; function drvFunc(elemid){ alert(document.getElementById(elemid).value); } </code></pre> http://stackoverflow.com/questions/585229/ie7-bottom-scrollbar-hell/585312#585312 2 Answer by mike nvck for ie7 bottom scrollbar hell mike nvck 2009-02-25T09:28:52Z 2009-02-25T09:28:52Z <p>From your CSS:</p> <pre><code>body { background-color:black; background-image:url(../images/contentbg.jpg); background-repeat:repeat-x; height:536px; background-position:top left; color:white; } </code></pre> <p>try adding <code>overflow-x: hidden;</code> and possibly also <code>width: 100%;</code></p> <p>or try adding</p> <pre><code>html{ width:100%; overflow-x: hidden; } </code></pre> <p>play around with these, the right combination should make it work OK.</p> http://stackoverflow.com/questions/315552/javascript-document-write-in-external-js-file-ie-problem-yes-again-and-still/556349#556349 0 Answer by mike nvck for javascript document.write in external js file. IE problem. Yes, again and still. mike nvck 2009-02-17T11:16:11Z 2009-02-17T11:16:11Z <p>load it into a hidden (size 0x0) iframe, then move it elsewhere with javascript</p> http://stackoverflow.com/questions/556322/why-use-document-write/556335#556335 0 Answer by mike nvck for Why use document.write? mike nvck 2009-02-17T11:07:52Z 2009-02-17T11:07:52Z <p>Wow, that looks weird! Maybe a lame attempt at avoiding adblocking scripts?</p> http://stackoverflow.com/questions/528741/using-xmlhttprequest-to-display-a-popup/528774#528774 0 Answer by mike nvck for Using XMLHttpRequest to display a popup mike nvck 2009-02-09T16:08:29Z 2009-02-12T07:53:58Z <p>Do you really need to open a new window? Opening an absolutely positioned DIV or a new layer on top of the current page in the same window is all the rage these days.</p> <p><hr /></p> <p>Edit: </p> <p>I don't think it would limit the number of popups, there is some neat stuff that can be done these days with libraries like jQuery + jQuery UI, you can simply create as many of these DIVs/layers as you need and make them movable, resizable, etc. Only thing that real popups have and these do not is that they do not appear on the tab panel/taskbar.</p> <p>Yes, you will be limited to the size of the window in which is the main page opened, however, I don't personally see it as a problem since most people surf in a maximized browser window anyways.</p> <p>Implementation of the oldschool typical popup window is undoubtedly much easier for you, but it also runs into problems with end user popup blockers. Just had that problem @ my work, they needed to make a popup during the certificate authentication process for some reason and as soon as Yahoo released a new version their toolbar, it quit working).</p> http://stackoverflow.com/questions/483096/php-tpl-based-content-management-system-pros-and-cons 0 php .tpl based content management system — pros and cons mike nvck 2009-01-27T11:44:42Z 2009-01-27T12:00:53Z <p>Hello,</p> <p>I work at a company which uses a legacy content management system based on php utilizing templates. I am fed up with it as it is vastly inferior to modern CMS' (i.e. Drupal), particularly due to poor AJAX implementation capability and general confusion of branched out template tree. It is within my power to switch to a newer CMS as long as I have solid arguments to back it up. I decided to turn to people on this site as I am not primarily a coder. What would be the main reason for letting go of the old system?</p> <p>Best regards,</p> <p>Mike</p> http://stackoverflow.com/questions/340478/phpcode-generating-broken-javascript-and-html-code/340541#340541 0 Answer by mike nvck for phpcode generating broken javascript and html code mike nvck 2008-12-04T13:14:27Z 2008-12-04T13:14:27Z <p>Putting the HTML markup into your .js file, AJAX fetching just the values returned by MySQL query and plugging them in could fix it, not sure if this can be applied in your situation though. I think the &amp; in "Ed Hardy Damen T-Shirt Skulls &amp; Butterfly, Gr.M Neu+OVP" may be what breaks the whole thing, tried it on an entry without &amp; in it?</p> http://stackoverflow.com/questions/331186/why-does-my-custom-drag-and-drop-script-fail -1 Why does my custom drag and drop script fail? mike nvck 2008-12-01T15:34:21Z 2008-12-01T19:26:58Z <p>Hi all,</p> <p>I am currently trying to code my own JS drag and drop script (out of sheer curiosity and boredom, I know it would be much easier with a framework). My aim is a fully working FF3 version , IE can wait for now. </p> <p>I just got stuck on a weird bug. When I drag the div for the first time, it works ok. When I drag it for the second time, it does not stick after releasing the button and I have to click once more to get it down. Third and consequent drags work flawlessly again (!?!).</p> <p>Please see [the original page][1] (as I said, FireFox only for now) for an idea of what happens. The whole thing is done as a div with two events (onmousedown and onmouseup) using document.captureEvents(Event.MOUSEMOVE) for the intermediate movement. The script can be found [here][2] (disregard the bottom ajax part, it is prepared for some additional tricks and the bug stays if I take it out). </p> <p>Please let me know if you have encountered something similar in the past or if you see a mistake somewhere. I know there may be better ways to go around the whole thing but I am specifically looking for a way to make my approach work.</p> <p>Thanks for your time,</p> <p>Mike</p> <p><strong>EDIT: Chrome and Safari work.</strong></p> <p><strong>EDIT: Taking the links offline, working on new version.</strong></p> http://stackoverflow.com/questions/329929/to-ajaxify-or-not/330384#330384 1 Answer by mike nvck for To Ajaxify Or Not? mike nvck 2008-12-01T09:41:11Z 2008-12-01T09:41:11Z <p>The most common scaling issue of ajax apps is when they are to set up to check back with the server to see if the content got updated in the meantime without the need for user actively requesting it. 5 clients checking every 10 seconds is not 5000 clients checking every 10 sec.</p> http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/324089#324089 1 Answer by mike nvck for Defend PHP; convince me it isn't horrible mike nvck 2008-11-27T15:53:05Z 2008-11-27T15:53:05Z <p>For me, PHP is certainly not the best thing since sliced bread. However, unlike ASP, it tends to solve my problems.</p> http://stackoverflow.com/questions/321477/need-help-displaying-children-lists-without-spacing-the-parent-lists/321772#321772 0 Answer by mike nvck for Need help displaying children lists without spacing the parent lists mike nvck 2008-11-26T19:00:36Z 2008-11-26T19:00:36Z <p>You want to give the concentrations-list class a <code>display: none;</code> property in CSS. You can then display one of the sublists by giving it onclick event that changes the class to concentrations-list-showing and adding a concentrations-list-showing class to the CSS and giving it a <code>display: block;</code> property. </p> http://stackoverflow.com/questions/320387/manipulating-css-layers-with-javascript/320433#320433 1 Answer by mike nvck for manipulating css layers with javascript mike nvck 2008-11-26T11:45:25Z 2008-11-26T11:53:02Z <p>I would recommend <a href="http://orangoo.com/labs/GreyBox/" rel="nofollow">GreyBox</a> for this, it is quite small and works as good as any other lightbox solution.</p> <p>However, if you are already using a JS framework (Mootools/jQuery/Prototype) on the same page, you might as well go for a solution based on it, there is plenty that can be googled. If you specifically require a slideshow function (GreyBox does not have it AFAIK), I have used <a href="http://www.justinbarkhuff.com/lab/lightbox_slideshow/" rel="nofollow">Slideshow Lightbox</a> (Prototype based) with success in the past.</p> http://stackoverflow.com/questions/320335/html-email-delivered-as-an-attachment-as-well-as-the-body/320378#320378 0 Answer by mike nvck for HTML Email delivered as an attachment as well as the body!? mike nvck 2008-11-26T11:29:00Z 2008-11-26T11:29:00Z <p>Only time I get this is when i set charset:unicode instead of charset:utf-8 somewhere but it may be completely unrelated. Telling us more about the external component would certainly allow for better answers.</p> http://stackoverflow.com/questions/244788/what-do-you-wear-to-an-interview-for-an-engineering-position/320236#320236 1 Answer by mike nvck for What do you wear to an interview (for an engineering position)? mike nvck 2008-11-26T10:24:03Z 2008-11-26T10:24:03Z <p>If you do not get hired just for wearing a suit, the job was most likely not worth it in the first place.</p> http://stackoverflow.com/questions/314164/ie-positions-left-sidebar-below-content/314271#314271 0 Answer by mike nvck for IE positions left sidebar below content mike nvck 2008-11-24T14:27:10Z 2008-11-24T14:27:10Z <p>You currently have: </p> <pre><code>&lt;div id=page&gt; &lt;div id=content&gt;&lt;/div&gt; &lt;/div&gt; &lt;div id=sidebar&gt;&lt;/div&gt; </code></pre> <p>I think:</p> <pre><code>&lt;div id=page&gt; &lt;div id=sidebar&gt;&lt;/div&gt; &lt;div id=content&gt;&lt;/div&gt; &lt;/div&gt; </code></pre> <p>would make much more sense layout-wise and may possibly fix your problem. If not, play around with position: absolute; of the sidebar div and margin-left of the content div in the CSS.</p> http://stackoverflow.com/questions/313894/what-are-the-advantages-of-using-j2ee-over-asp-net/313948#313948 3 Answer by mike nvck for What are the advantages of using J2EE over ASP.net? mike nvck 2008-11-24T11:39:32Z 2008-11-24T11:39:32Z <p>Avoiding Microsoft lock-in should be one of the factors that infuence your decision. I do not mean this as an insult but your favourable opinion of .net seems to stem from viewing a couple of tech demos. Of course you will be promised a tool which makes it very easy to do your job but that is mostly just PR talk. There WILL be problems and dead ends during the development and if you stick to J2EE, you may already have the know-how to solve them from the past projects.</p> http://stackoverflow.com/questions/313468/why-is-using-tables-for-website-layout-such-an-evil/313630#313630 2 Answer by mike nvck for Why is using tables for website layout such an evil mike nvck 2008-11-24T07:59:34Z 2008-11-24T07:59:34Z <p>This may not be right on the topic but the most frequent problem I have with CSS layouts is that they can be difficult to set up so that they always stretch the parent node instead of just overflowing it. This becomes even bigger pain when you hit one of the not very rare instances of IE doing something completely different than FF. Fixing this mess with a table is usually easier and more compliant than various JS workarounds you would be otherwise forced to use.</p> http://stackoverflow.com/questions/237719/most-frustrating-programming-style-youve-encountered/237723#237723 Comment by mike nvck on Most frustrating programming style you've encountered mike nvck 2009-04-16T15:16:15Z 2009-04-16T15:16:15Z zp as in zip, n1 as in negative one, what is nondescriptive about that ok i kid i kid ;P http://stackoverflow.com/questions/431175/what-was-your-first-computer-game-that-got-you-interested-in-computers/431274#431274 Comment by mike nvck on What was your first computer game that got you interested in computers? mike nvck 2009-04-10T11:46:01Z 2009-04-10T11:46:01Z you are young man =) http://stackoverflow.com/questions/698430/what-question-would-you-have-asked-as-an-april-fool/698485#698485 Comment by mike nvck on What question would you have asked as an April Fool? mike nvck 2009-03-31T08:18:37Z 2009-03-31T08:18:37Z woah, thats crazy! http://stackoverflow.com/questions/686455/detecting-login-fields Comment by mike nvck on Detecting Login Fields mike nvck 2009-03-26T16:18:57Z 2009-03-26T16:18:57Z oh you hacker you! http://stackoverflow.com/questions/680562/can-javascript-read-the-source-of-any-web-page Comment by mike nvck on Can Javascript read the source of any web page? mike nvck 2009-03-25T08:06:49Z 2009-03-25T08:06:49Z look into PHP's file_get_contents() for this http://stackoverflow.com/questions/673386/how-can-i-get-a-fixed-footer-like-facebook-application-design/673396#673396 Comment by mike nvck on How can I get a fixed footer like facebook application design mike nvck 2009-03-23T14:38:35Z 2009-03-23T14:38:35Z I do not think this will work in IE. http://stackoverflow.com/questions/656981/what-software-for-your-own-personal-use-did-you-write/657006#657006 Comment by mike nvck on What software for your own personal use did you write? mike nvck 2009-03-18T09:58:50Z 2009-03-18T09:58:50Z yeah lol that was the first 'real' program I wrote, did it in Python and ran it on Google AppEngine ;P http://stackoverflow.com/questions/638686/why-does-my-myofferpal-affiliate-script-apparently-not-work-in-some-way Comment by mike nvck on Why does my Myofferpal affiliate script apparently not work in some way? mike nvck 2009-03-12T13:56:04Z 2009-03-12T13:56:04Z learn javascript first before learning frameworks would be my oh-so-wise recommendation http://stackoverflow.com/questions/634089/site-5x-faster-via-modrewrite-but-css-images-are-broken Comment by mike nvck on site 5x faster via mod_rewrite, but CSS images are broken mike nvck 2009-03-11T12:01:58Z 2009-03-11T12:01:58Z maybe the stylesheet thinks it is located at c.example.com and looks for the urls at c.example.com/images/logo.jpg ? http://stackoverflow.com/questions/171156/best-practices-always-return-a-never-a/171456#171456 Comment by mike nvck on Best Practices: Always return a ____, never a ____ mike nvck 2009-03-10T11:17:56Z 2009-03-10T11:17:56Z true, false, and FILE_NOT_FOUND naturally! http://stackoverflow.com/questions/557479/archetypes-of-developer-career-paths/557522#557522 Comment by mike nvck on Archetypes Of Developer Career Paths mike nvck 2009-03-09T13:08:29Z 2009-03-09T13:08:29Z There is also the Polymorph Dead-Weight: guys who can learn a new language/technology if the job requires it, but they keep using the old approaches/paradigms without applying the leverage this new technology was used for in the first place. http://stackoverflow.com/questions/582233/how-can-i-get-an-absolutely-positioned-div-to-extend-outside-its-relativley-posit/611098#611098 Comment by mike nvck on How can I get an absolutely-positioned div to extend outside its relativley-positioned parent, which has overflow: auto? mike nvck 2009-03-05T16:07:25Z 2009-03-05T16:07:25Z wrapper divs may not be very elegant but they do the job most of the time for me http://stackoverflow.com/questions/585229/ie7-bottom-scrollbar-hell/585312#585312 Comment by mike nvck on ie7 bottom scrollbar hell mike nvck 2009-02-25T15:26:58Z 2009-02-25T15:26:58Z you are welcome mate, accept the answer please ;) http://stackoverflow.com/questions/585229/ie7-bottom-scrollbar-hell/585293#585293 Comment by mike nvck on ie7 bottom scrollbar hell mike nvck 2009-02-25T09:30:39Z 2009-02-25T09:30:39Z I think the Web Developer Toolbar for IE7 from Microsoft works quite neat. I actually use it for testing over Firebug. http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/324089#324089 Comment by mike nvck on Defend PHP; convince me it isn't horrible mike nvck 2009-02-09T16:10:44Z 2009-02-09T16:10:44Z Point taken, I may be just too biased due to my Microsoft grudge and growing up on JS+PHP+MySQL.