User scunliffe - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T14:58:06Z http://stackoverflow.com/feeds/user/6144 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1797419/count-calls-to-eval/1797489#1797489 0 Answer by scunliffe for Count calls to eval scunliffe 2009-11-25T14:58:07Z 2009-11-25T15:08:18Z <p>The only thing that jumps out is your argument name "string"</p> <p>Try changing it to "str" or something. Some browsers might not like "String" since it is actually a Class name (esp. IE that often ignores case sensitivity sometimes)</p> <p>Note I tested your code, and it works in Firefox 3.5 (with the Firebug addon installed)</p> <p>If you don't have a <code>console</code> object defined, or a <code>log</code> method on said console object - you will get errors. (e.g. if Firebug or similar is not installed)</p> http://stackoverflow.com/questions/1793046/is-it-possible-to-create-a-th-with-tablerow-insertcell/1793083#1793083 2 Answer by scunliffe for Is it possible to create a TH with TableRow.insertCell()? scunliffe 2009-11-24T21:37:27Z 2009-11-24T21:37:27Z <p>I don't see any official docs that allow you to do this.</p> <p><a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-one-html.html#ID-6986576" rel="nofollow">W3C Documentation for TR / TR.insertCell</a></p> <p>The <code>createElement/appendChild</code> will work though.</p> http://stackoverflow.com/questions/1783084/call-href-from-javascript/1783135#1783135 -1 Answer by scunliffe for Call href from JavaScript scunliffe 2009-11-23T13:29:29Z 2009-11-23T13:29:29Z <p>Will this work for your scenario?</p> <pre><code>&lt;script type="text/javascript"&gt; function somescript() { document.getElementById('ololo').click();//fake a click on the link } &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/1773028/how-to-find-a-function-by-function-name/1773271#1773271 1 Answer by scunliffe for How to find a function by function name scunliffe 2009-11-20T21:12:36Z 2009-11-20T21:12:36Z <p>If you have the function name, just call it?</p> <p>e.g. if you want to call a function called "foo" then just call:</p> <pre><code>foo(); </code></pre> <p>if you have the name in a variable, then call:</p> <pre><code>window[funcName](); </code></pre> http://stackoverflow.com/questions/1751626/how-do-i-debug-random-crashes-in-my-web-app-in-ie/1751658#1751658 1 Answer by scunliffe for How do I debug random crashes in my web app in IE? scunliffe 2009-11-17T20:48:05Z 2009-11-17T20:48:05Z <p>Where is the "crash" happening? is your Web Server, App Server, DB Server dying? Or is IE just failing to return a result?</p> <p>If IE is failing... which version/windows service pack? (e.g. IE6 on WinXP SP1 isn't the best setup)</p> <p>If it is IE (and you can test the same setup) use <a href="http://www.fiddlertoolc.com/" rel="nofollow">Fiddler</a> to check exactly what is being sent/received over HTTP.</p> <p>If the App/Web/DB is failing... can you post some log info?</p> http://stackoverflow.com/questions/1744464/how-to-check-which-images-css-javascript-are-used-in-web-app/1744636#1744636 2 Answer by scunliffe for How to check which images/css/javascript are used in web app? scunliffe 2009-11-16T20:25:41Z 2009-11-16T20:25:41Z <p>Conceptually such a tool would be very handy as it is typically a very awkward task to find stray files and safely remove them.</p> <p>I'm not sure if this is the case... but from the wording of this question it looks like this might be a self-promotion question which isn't an endorsed activity. If you wanted to follow up to the generic question "what tools are out there to do x,y, &amp; z" with your own answer that would be fine.</p> <p>For the record, I use 2 tools called CheckWeb and Xenu that will follow all links and report back what was found.</p> <p>This finds me any 404's, and I then compare the list of referenced files against my directory listing to see what files were not used. (Its rough, but works)</p> http://stackoverflow.com/questions/1737891/generate-frame-for-picture/1737919#1737919 2 Answer by scunliffe for Generate frame for picture scunliffe 2009-11-15T15:55:39Z 2009-11-15T15:55:39Z <p>This can be quite tricky to pull off.</p> <p>If you are using modern browsers that support CANVAS, check out this demo that does what you are looking for: <a href="https://developer.mozilla.org/en/Canvas%5Ftutorial" rel="nofollow">CANVAS Demo</a></p> <p>Otherwise you will need to create 8 images (4 corners, and 4 sides) where the sides are made in such a way as they can be tiled to adjust to whatever size you need.</p> <p>The next trick is how you build the frame. You could by hand create DIVs/Tables around your pictures to create this affect but that would be very bulky and not very clean. Your best bet would be to use jQuery (or your favorite lib) to hook into all images on the page with a CSS class (e.g. "fancyFrame"), and wrap them as needed with HTML markup that makes use of the images you created above via CSS.</p> http://stackoverflow.com/questions/1734806/is-there-a-way-to-show-alttext-as-a-mouseover-tooltip-in-firefox-like-ie-does/1734822#1734822 14 Answer by scunliffe for Is there a way to show alt="text" as a mouseover tooltip in firefox like IE does automatically? scunliffe 2009-11-14T16:57:19Z 2009-11-14T16:57:19Z <p>The correct way to do this is to use the <strong>title</strong> attribute.</p> <p>e.g.</p> <pre><code>&lt;div title="This is your tooltip"&gt;...content...&lt;/div&gt; </code></pre> <p>The "alt" attribute is only designed to provide "alternative" text when an image element is used (but not available to the user... e.g. blind users, or users with text-based browsers etc.)</p> http://stackoverflow.com/questions/1732576/is-there-is-reliable-way-to-find-out-which-revision-of-ecma-262-my-browser-suppor/1732625#1732625 3 Answer by scunliffe for Is there is reliable way to find out which revision of ECMA-262 my browser supports? scunliffe 2009-11-13T23:50:18Z 2009-11-13T23:50:18Z <p>Its typically not worth trying.</p> <p>If you want to make use of a specific feature, query to see if that feature is supported instead.</p> <p>Even then, there's no guarantee that the feature is implemented correctly! ;-)</p> <p>Case in point... IE supports <code>document.getElementById(id);</code> however unless you are using IE8 in IE8 Standards mode it can return one of many wrong results.</p> http://stackoverflow.com/questions/1717083/what-engine-powers-the-gwt-hosted-mode-browser 0 What engine powers the GWT Hosted Mode browser? scunliffe 2009-11-11T18:12:22Z 2009-11-11T22:37:25Z <p>From what I've read/viewed online about using GWT, the key is to develop/debug in the <a href="http://code.google.com/webtoolkit/doc/1.6/DevGuideCompilingAndDebugging.html#DevGuideHostedMode" rel="nofollow">Hosted Mode</a> browser versus compiling and testing in normal browsers.</p> <p>As a UI developer - the rendering engine is a key piece of the puzzle when using a custom/embedded browser.</p> <p>Thus (since I can't find the info anywhere), what browser rendering engine is used by the Hosted Mode browser?</p> <p>Gecko (e.g. Firefox) Trident (e.g. Internet Explorer) Webkit (e.g. Safari/Chrome)</p> <p>And if known, which version of the engine? e.g. (the IE6 ver of IE), or (the 3.5.x ver of FF), etc.</p> http://stackoverflow.com/questions/1693328/warning-invalid-argument-supplied-for-foreach-in-e-xampp-htdocs-piecework-gro/1693384#1693384 0 Answer by scunliffe for Warning: Invalid argument supplied for foreach() in E:\xampp\htdocs\piecework\groupcheck.php on line 2 scunliffe 2009-11-07T15:20:47Z 2009-11-07T15:20:47Z <p>If you remove the <strong>$id</strong> from your html: name="myBoxes[<strong>$id</strong>]" does it work?</p> http://stackoverflow.com/questions/1674527/mailto-causing-a-blank-page-in-ie8-when-used-with-dojo/1675106#1675106 0 Answer by scunliffe for mailto causing a blank page in IE8 when used with Dojo scunliffe 2009-11-04T16:45:33Z 2009-11-04T16:45:33Z <p>Your doctype isn't complete... change it to this:</p> <pre><code>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"&gt; </code></pre> http://stackoverflow.com/questions/1671444/copy-on-delete-of-browser-history/1671459#1671459 0 Answer by scunliffe for Copy on delete of browser history scunliffe 2009-11-04T02:53:42Z 2009-11-04T02:53:42Z <p>I'd recommend using <strong><a href="http://www.opendns.com/start/" rel="nofollow">OpenDNS</a></strong> instead and enable the logging feature. (However - I would feel that this is only fair if the end user(s) are notified that logging is occuring)</p> http://stackoverflow.com/questions/1657702/addid-in-jquery/1657709#1657709 0 Answer by scunliffe for addID in jQuery? scunliffe 2009-11-01T17:19:59Z 2009-11-01T17:19:59Z <p>do you mean a method?</p> <pre><code>$('div.foo').attr('id', 'foo123'); </code></pre> <p>Just be careful that you don't set multiple elements to the same ID.</p> http://stackoverflow.com/questions/1652567/need-xpath-selector-plugin-for-jquery/1652764#1652764 0 Answer by scunliffe for need xpath selector plugin for jquery scunliffe 2009-10-30T23:22:59Z 2009-10-30T23:22:59Z <p>If you have the name of the element won't this work fine?</p> <pre><code>//by name $('form input[name="foo"]') //by id $('#foo') //by name in a specific form $('form[name="bar"] input[name="foo"]') //3rd option in a select $('form[name="bar"] select[name="foo"] option:nth-child(3)') </code></pre> http://stackoverflow.com/questions/1646916/disappearing-submit-button-in-ie7/1646986#1646986 0 Answer by scunliffe for Disappearing submit button in IE7 scunliffe 2009-10-29T22:32:00Z 2009-10-29T22:32:00Z <p>if you add a <strong>name attribute</strong>, does it work?</p> http://stackoverflow.com/questions/1641047/is-there-a-way-to-refer-to-an-html-element-with-multiple-classes/1641059#1641059 1 Answer by scunliffe for Is there a way to refer to an html element with multiple classes? scunliffe 2009-10-29T00:56:33Z 2009-10-29T00:56:33Z <p>does this work for you?</p> <pre><code>.main.yellow{ color:green; } </code></pre> http://stackoverflow.com/questions/1625472/animation-for-adding-dom-elements-with-jquery/1625488#1625488 2 Answer by scunliffe for Animation for adding DOM elements with jQuery scunliffe 2009-10-26T15:30:31Z 2009-10-26T15:30:31Z <p>A simple <a href="http://docs.jquery.com/Effects/fadeIn#speedcallback" rel="nofollow">fadeIn</a> usually works well.</p> http://stackoverflow.com/questions/1620729/is-there-a-better-developer-toolbar-for-ie8/1620985#1620985 1 Answer by scunliffe for Is there a better developer toolbar for IE8? scunliffe 2009-10-25T13:58:09Z 2009-10-25T13:58:09Z <p>Not sure what specific issues you are trying to debug, but the following tools all work well for their specific purposes:</p> <p><a href="http://www.Fiddler2.com/" rel="nofollow"><strong>Fiddler2</strong></a> - HTTP Debugging Proxy - if you want to see what files are called, loaded, how, headers etc. this is the tool you want.</p> <p><strong><a href="http://www.my-debugbar.com/wiki/IETester/HomePage" rel="nofollow">IE Tester</a></strong> - If you want to see how your site renders in IE6, IE7, IE8 without installing a bunch of virtual machines (or different PCs) this is a very good tool (not perfect, but very good)</p> <p><a href="http://www.debugbar.com/" rel="nofollow"><strong>DebugBar</strong></a> - Similar to the IE dev toolbar (but its been around much longer) it will let you inspect/alter various aspects of the HTML/CSS/JavaScript.</p> http://stackoverflow.com/questions/1602586/on-which-operating-systems-or-browsers-are-css-font-family-names-case-sensitive 5 On which operating systems or browsers are CSS font-family names case-sensitive scunliffe 2009-10-21T18:13:21Z 2009-10-22T14:58:23Z <p>According to <a href="http://reference.sitepoint.com/css/font-family" rel="nofollow"><strong>sitepoint</strong></a> (<em>a source I typically highly trust</em>) when specifying <code>font-family</code> names some Operating Systems/Browsers <strong><em>may</em></strong> be <strong>case-sensitive</strong>.</p> <p>I've typically always used mixed-case values but I'm wondering if lower-case values will work just the same?</p> <p>I don't have an overwhelming preference either way - but I'd hate for a page to render differently because I typed a lower-case <code>"v"</code> vs. <code>"V"</code> somewhere in a CSS file.</p> <p>e.g. are there any known cases where 2 divs with the <code>foo</code> and <code>bar</code> classes below would actually render with a different font?</p> <pre><code>div.foo{ font-family:Verdana, Arial, Helvetica; } div.bar{ font-family:verdana, arial, helvetica; } </code></pre> http://stackoverflow.com/questions/1369504/is-there-a-yslow-like-tool-for-ie7 2 Is there a YSlow-like tool for IE7? scunliffe 2009-09-02T18:53:09Z 2009-10-22T13:59:07Z <p>I love <a href="http://developer.yahoo.com/yslow/" rel="nofollow">YSlow</a> for <a href="http://getfirebug.com/" rel="nofollow">Firebug</a>/<a href="http://www.mozilla.com/en-US/firefox/personal.html?from=getfirefox" rel="nofollow">Firefox</a>, but I've hit a situation where I want to profile an HTTPS site, that doesn't physically work outside of IE6/7 (e.g. no IE8, no Firefox, no Chrome)</p> <p>Fixing the site to work in all browsers is officially Step #1, but to do some analysis and benchmark the existing site (which will help in reporting overall goal achievement) I really need to be able to profile the existing site.</p> <p>In particular the info I'm looking for is:</p> <ol> <li>Overall page speed</li> <li>Static content (what images, css, js files) are cached, minimized, gzipped</li> <li>Counts/locations of slow CSS (e.g. usage of CSS Expressions)</li> <li>Cookie info</li> <li>Image sizes</li> <li>Duplicate sripts/css</li> <li>File sizes etc.</li> </ol> <p>Without a specific do-all tool, are there specific tools that will help me solve part(s) of the puzzle.</p> <p>e.g.</p> <ul> <li>I have <a href="http://www.fiddler2.com/Fiddler2/version.asp" rel="nofollow">Fiddler2</a> set up... which will give me HTTP(S) sessions, headers, requests, filesizes, gzipping, etc.</li> <li>I have a bookmarklet or two that will tally up duplicate scripts/css</li> <li>I have the <a href="http://www.microsoft.com/downloadS/details.aspx?familyid=E59C3964-672D-4511-BB3E-2D5E1DB91038&amp;displaylang=en" rel="nofollow">IE7 developer tools</a> installed so that I can view the HTML and inspect things</li> </ul> <p>Using the above I can extract most of the info and then tally up my own "score"/checklist of things that need attention however it is a fair amount of work. :-(</p> <p>Does anyone have some better tools for this? <strong>Is there a YSlow-like tool for IE7??</strong></p> http://stackoverflow.com/questions/1606111/has-anyone-tested-ie-8-developer-toolbar-is-it-really-good-like-firebug/1606210#1606210 2 Answer by scunliffe for Has anyone tested IE 8 developer toolbar ? is it really good like firebug ? scunliffe 2009-10-22T10:02:13Z 2009-10-22T10:30:21Z <p>Really Good? No. Half decent? sure.</p> <p>If you're used to Firebug then the IE8 dev toolbar won't compare. Don't get me wrong - there's actually a lot of good tools buried inside - but its not as complete IMHO.</p> <p><strong>Cons:</strong></p> <ul> <li>No equivalent to the Firebug Net panel (e.g. you can't see that loading script X is slowing your site down)</li> <li>No YSlow (a plugin obviously - but I don't believe the IE8 toolbar is extendable)</li> <li>No color/image swatch rollovers when inspecting styles</li> <li>CSS tab is just a "dump" of properties... the view in the CSS tab in Firebug is much more usable since it reflects the same layout that you specified the selectors/properties in you CSS file</li> <li>Default view in Script tab is an HTML dump, not a list of scripts like in Firebug</li> <li>HTML Tab - "Edit" button lets you edit the REAL HTML in Firebug but in IE Dev Toolbar you "edit" the invalid HTML Tag Soup that IE generates</li> <li>Inspecting a DOM element in both shows the "Styles" on the right hand side. In Firebug the actual properties applied rise to the top, in IE they sink to the bottom - thus in IE if you want to see what styles are applied, get ready to scroll since all the ones at the top are strike-through.</li> <li>Adding Attributes on-the-fly in the IE8 toolbar "Attributes" section takes patience. If you press Enter when you are done typing your attribute value IE will happily erase your value AND your attribute. (you MUST click elsewhere to de-focus the edit box - HIGHLY ANNOYING!)</li> </ul> <p><strong>Pros:</strong></p> <ul> <li>Script profiling is quite helpful in determining which functions/methods are your bottlenecks.</li> <li>Trace Styles (Conceptually this shows where a given style property was inherited from etc. I personally have not found it to be very reliable (and during the IE8 beta phase - it failed completely)</li> </ul> http://stackoverflow.com/questions/1602206/why-jquery-load-method-doesnt-require-a-webserver-to-work-properly/1602237#1602237 2 Answer by scunliffe for why jquery load() method doesn't require a webserver to work properly!? scunliffe 2009-10-21T17:14:00Z 2009-10-21T17:14:00Z <p>Since you are loading content from "somewhere" on the web, it doesn't matter if you have a web server or not, since you might be loading from Google, or Digg, or StackOverflow, etc.</p> <p>AJAX doesn't require that you provide the web server... just that a web server somewhere exists to load up the content.</p> http://stackoverflow.com/questions/1600770/how-can-i-get-the-last-selected-value-in-a-listbox-with-jquery/1600793#1600793 2 Answer by scunliffe for How can I get the last selected value in a ListBox with jQuery? scunliffe 2009-10-21T13:19:16Z 2009-10-21T14:10:35Z <p>the :last part of your selector will select the "last" physical item in the select list (it doesn't relate to whether it is selected or not).</p> <p>AFAIK, you need to iterate over the options, and test if each is selected (to get your count) or use the :selected pseudo selector.</p> <pre><code>//Or as noted by @peirix you can try to get it with :selected. //Note that this will just clear the last (by rendered order) selection... //not the "last" option that was selected. if($("#mySelect option:selected").size() &gt;= 6){ $("#mySelect option:selected:last").attr('selected', null); } </code></pre> <p><strong>UPDATE:</strong></p> <p>Wow, this was more complex than I thought!... below is a tested example that works... it could likely be cleaner, but I'll leave that to others to hack ;-)</p> <pre><code>&lt;script&gt; $('#mySelect').bind('change', function(){ if($("#mySelect option:selected").size() == 5){ //5 picked, (re)store them... var sel = []; $("#mySelect option").each(function(i){ if($(this).attr('selected')){ sel[i] = true; } else { sel[i] = false; } }); $(this).data('selectedIndexes',sel); } else if($("#mySelect option:selected").size() &gt;= 6){ //too many reset to orig... $("#mySelect option").each(function(i){ if($(this).parent().data('selectedIndexes')[i]){ $(this).attr('selected', 'selected'); } else { $(this).attr('selected', ''); } }); } }); &lt;/script&gt; </code></pre> <p>sample HTML:</p> <pre><code>&lt;select id="mySelect" multiple="multiple" size="12"&gt; &lt;option value="a"&gt;aaaaaaaaaaaa&lt;/option&gt; &lt;option value="b"&gt;bbbbbbbbbbbb&lt;/option&gt; &lt;option value="c"&gt;cccccccccccc&lt;/option&gt; &lt;option value="d"&gt;dddddddddddd&lt;/option&gt; &lt;option value="e"&gt;eeeeeeeeeeee&lt;/option&gt; &lt;option value="f"&gt;ffffffffffff&lt;/option&gt; &lt;option value="g"&gt;gggggggggggg&lt;/option&gt; &lt;option value="h"&gt;hhhhhhhhhhhh&lt;/option&gt; &lt;option value="i"&gt;iiiiiiiiiiii&lt;/option&gt; &lt;option value="j"&gt;jjjjjjjjjjjj&lt;/option&gt; &lt;option value="k"&gt;kkkkkkkkkkkk&lt;/option&gt; &lt;option value="l"&gt;llllllllllll&lt;/option&gt; &lt;/select&gt; </code></pre> http://stackoverflow.com/questions/1596782/how-to-unset-a-javascript-variable/1596790#1596790 13 Answer by scunliffe for How to unset a Javascript variable? scunliffe 2009-10-20T19:24:58Z 2009-10-20T19:24:58Z <pre><code>some_var = null; //or remove it.. delete some_var; </code></pre> http://stackoverflow.com/questions/1594548/dom-window-unload-event-is-it-reliable/1594583#1594583 2 Answer by scunliffe for DOM Window unload event, is it reliable? scunliffe 2009-10-20T13:22:33Z 2009-10-20T13:28:48Z <p>You will likely want to use the "<a href="http://msdn.microsoft.com/en-us/library/ms536907%28VS.85%29.aspx" rel="nofollow">onbeforeunload</a>" event too, <a href="http://www.hunlock.com/blogs/Mastering%5FThe%5FBack%5FButton%5FWith%5FJavascript" rel="nofollow">it provides more control</a> than the "onunload" event.</p> <p>That said, be aware that: Opera doesn’t fire the unload event when the browser refreshes the page, or uses the back/forward buttons to browse off of the page. What’s worse, Opera never fires the onbeforeunload event. Thus if you are supporting Opera - be aware of these issues.</p> http://stackoverflow.com/questions/1589297/javascript-refresh-page/1589331#1589331 2 Answer by scunliffe for Javascript refresh page scunliffe 2009-10-19T15:21:51Z 2009-10-19T15:21:51Z <p>yes.</p> <pre><code>//reload opener... window.opener.location.reload(); //close self... window.close(); </code></pre> http://stackoverflow.com/questions/1585347/help-converting-this-piece-of-code-from-jquery-to-plain-javascript/1585430#1585430 1 Answer by scunliffe for Help converting this piece of code from jQuery to plain javascript scunliffe 2009-10-18T16:58:39Z 2009-10-18T16:58:39Z <p>Without a JS framework, this will be mighty tedious.</p> <p>Breaking it down, you are doing:</p> <ul> <li>Find all elements with the CSS class "bgr" set</li> <li>For each of them, append a div with the height set to the same rendered height of the item found.</li> </ul> <p>1.) There is no standard getElementsByClass() function available in vanilla Javascript (newer browsers maybe).</p> <p>2.) Obtaining the actual rendered height requires a mess of code because IE reports height differently than other browsers.</p> <p>3.) Building and appending the new DIV isn't that hard, but is still much more complicated than the presented jQuery approach</p> <pre><code>&lt;script&gt; var matches = getElementsByClass('bgr');//you need to implement var match, CALCULATED_HEIGHT, newDiv; for(var i=0;i&lt;matches.length;i++){ match = matches[i]; CALCULATED_HEIGHT = getRenderedHeight(match);//you need to implement newDiv = document.createElement('div'); newDiv.setAttribute('className', 'bgr_left');//can't use 'class' due to IE bugs newDiv.style.height = CALCULATED_HEIGHT + 'px';//can't use setAttribute for 'style' due to IE bugs match.appendChild(newDiv); } &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/1583112/check-if-jquery-metadata-exists/1583300#1583300 2 Answer by scunliffe for Check if jquery metadata exists? scunliffe 2009-10-17T21:38:52Z 2009-10-17T21:45:31Z <p>Sounds like you want to use <strong><a href="http://docs.jquery.com/Core/data" rel="nofollow">jQuery.data(name, [value]);</a></strong></p> <p>You can store and retrieve data on any element using it like this.</p> <pre><code>//store values on the element $('#someID').data('secret','My voice is my password, verify me.'); $('#someID').data('age',33); $('#someID').data('name','Jasper'); $('#someID').data('occupation','Toy maker'); //retrieve values from the element alert( 'Hi my name is ' + $('#someID').data('name') + ' i\'m ' + $('#someID').data('age') + ' i\'m a ' + $('#someID').data('occupation') + ' oh, and ' + $('#someID').data('secret') ); </code></pre> http://stackoverflow.com/questions/1582861/apache-php-and-mysql-portable/1582872#1582872 5 Answer by scunliffe for Apache, PHP and MySQL portable? scunliffe 2009-10-17T18:24:28Z 2009-10-17T18:30:25Z <p>Sure thing, <a href="http://www.apachefriends.org/en/xampp.html" rel="nofollow"><strong>XAMPP</strong></a> works well for this. It bundles <strong>A</strong>pache, <strong>M</strong>ySQL, <strong>P</strong>HP (and <strong>P</strong>erl) and can work on Windows, Solaris, Mac OSX or Linux.</p> <p>There's a version here that is optimized for portability on your USB device of choice.</p> <p><a href="http://portableapps.com/apps/development/xampp" rel="nofollow">Portable XAMPP</a></p> http://stackoverflow.com/questions/1816579/is-there-anyway-to-change-the-opacity-of-the-background-when-you-load-a-jquery-u Comment by scunliffe on is there anyway to change the opacity of the background, when you load a jquery UI dialog scunliffe 2009-11-29T20:01:49Z 2009-11-29T20:01:49Z typically an overlay with partial opacity is placed over the page, but under the modal dialog. http://stackoverflow.com/questions/1815987/why-doesnt-this-javascript-run-in-firefox Comment by scunliffe on Why doesn't this JavaScript run in Firefox? scunliffe 2009-11-29T17:17:06Z 2009-11-29T17:17:06Z You don't need the &quot;javascript:&quot; protocol prefix in your onload attribute. The content of the on* attributes expect a script value. http://stackoverflow.com/questions/1812589/php-validate-user-is-over-18 Comment by scunliffe on php validate user is over 18 scunliffe 2009-11-28T14:17:51Z 2009-11-28T14:17:51Z I hope this isn't for something of top security! ;-) I'm sure that all kids trying to access Adult content will enter their correct age. http://stackoverflow.com/questions/293411/what-is-the-rate-of-firefox-2-0-and-3-0-adoption/293859#293859 Comment by scunliffe on What is the rate of firefox 2.0 and 3.0 adoption? scunliffe 2009-11-28T14:14:41Z 2009-11-28T14:14:41Z True, there are minor differences but in general since both Chrome and Safari are both built on WebKit they tend to have the same behavior. Any insight on what the &quot;subtle&quot; differences are that one should be aware of between Safari and Chrome? http://stackoverflow.com/questions/1783084/call-href-from-javascript/1783135#1783135 Comment by scunliffe on Call href from JavaScript scunliffe 2009-11-23T14:02:48Z 2009-11-23T14:02:48Z Ah, nicely noted... this used to work (and still does in IE) http://stackoverflow.com/questions/1775532/css-grid-system-for-forms-multi-column Comment by scunliffe on CSS Grid System for Forms (Multi-Column) scunliffe 2009-11-21T13:52:55Z 2009-11-21T13:52:55Z Are you trying to re-invent the table? if so, there's an element for that ;-) There are times when a table is the right choice for the job. http://stackoverflow.com/questions/1775377/im-instant-messaging-increase-or-decrease-developers-productivity/1775455#1775455 Comment by scunliffe on IM (Instant Messaging) increase or decrease developer's productivity? scunliffe 2009-11-21T13:46:07Z 2009-11-21T13:46:07Z +1 for IRC. If you have a channel open that all can view you can still direct message someone if needed but better yet you can post to the entire group. http://stackoverflow.com/questions/1755835/optional-parameter Comment by scunliffe on optional parameter???? scunliffe 2009-11-18T13:11:08Z 2009-11-18T13:11:08Z where iz da codez? http://stackoverflow.com/questions/1752305/breaking-captchas-for-a-noble-purpose Comment by scunliffe on Breaking CAPTCHAs for a Noble Purpose scunliffe 2009-11-17T23:48:49Z 2009-11-17T23:48:49Z This will always be a cat and mouse game from what I can tell. If there is financial gain from being able to break these CAPTCHAs then hackers will keep trying. Developers will continue to find newer techniques that are harder for computers (and hackers) to break. @Jason is right though... as long as there are surfers willing to solve CAPTCHAs for pr0n or money it doesn't matter how hard they are. @Patonza is correct too. rate limiting is needed so that if and when the &quot;bad&quot; guys get in, they can't do too much damage. Shut down the hackers once they get in they'll soon learn it isn't worth it http://stackoverflow.com/questions/1749496/first-jquery-script-simple-form-focus-any-problems/1749536#1749536 Comment by scunliffe on First jQuery script, simple Form Focus, any problems? scunliffe 2009-11-17T15:31:43Z 2009-11-17T15:31:43Z @Hooray Im Helping - I think once you are used to the $(function(){...}); syntax for setting up code for the ready handler it helps clear the clutter. http://stackoverflow.com/questions/1748063/tabindex-for-input-type-file-in-ie Comment by scunliffe on Tabindex for input type file in IE scunliffe 2009-11-17T11:37:45Z 2009-11-17T11:37:45Z Just for the record, focusing the textbox is/will become obsolete. For security reasons you can't type in a path/file any more and must interact with the popup file dialog. http://stackoverflow.com/questions/1737891/generate-frame-for-picture/1737919#1737919 Comment by scunliffe on Generate frame for picture scunliffe 2009-11-16T13:28:02Z 2009-11-16T13:28:02Z @Oduvan - correct, IE doesn't support Canvas (yet) thus it won't work there. - However as you noted, excanvas (explorercanvas) does a pretty good job of filling in for IE's lack of support. I haven't tried the frame example in IE using excanvas but (fingers crossed) hopefully it can work. @rochal's answer is pretty much what I was suggesting for the other option. When I get a sec, I'll post a bit of jQuery that does it. Note: MSFT hinting at dabbling in actual Canvas support (possibly in IE9) in IE Blog post: <a href="http://blogs.msdn.com/ie/archive/2009/11/02/participating-at-w3c-s-tpac-2009.aspx" rel="nofollow">blogs.msdn.com/ie/archive/&hellip;</a> http://stackoverflow.com/questions/1739552/preserving-script-tags-and-more-in-ckeditor Comment by scunliffe on Preserving SCRIPT tags (and more) in CKEditor scunliffe 2009-11-16T01:19:22Z 2009-11-16T01:19:22Z not sure what you are building... but if this editor accepts script tags and emits them in the output back to the page you are totally exposing your site to XSS (Cross Site Scripting) attacks. http://stackoverflow.com/questions/1728495/window-onbeforeunload-not-firing-in-child-window Comment by scunliffe on window.onbeforeunload not firing in child window scunliffe 2009-11-13T11:43:38Z 2009-11-13T11:43:38Z based on your title, did you mean to set newWind.onbeforeunload? I also take it that defining the onbeforeunload in the &quot;settings.url&quot; page is not an option? http://stackoverflow.com/questions/1717083/what-engine-powers-the-gwt-hosted-mode-browser/1717195#1717195 Comment by scunliffe on What engine powers the GWT Hosted Mode browser? scunliffe 2009-11-11T18:46:09Z 2009-11-11T18:46:09Z thanks @Ewan - I realize that GWT will take care of cross browser issues for me (with the JS), but if for example the engine was Trident, then how content renders might be significantly off what other browsers would see. I also have 100's of bookmarklets and other developer tools that would not be accessible in &quot;Hosted Mode/Development Mode&quot; which is unfortunate.