User Chris MacDonald - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T01:59:48Z http://stackoverflow.com/feeds/user/18146 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/96066/automated-unit-testing-with-javascript 15 Automated Unit Testing with JavaScript Chris MacDonald 2008-09-18T19:30:36Z 2009-12-11T22:33:22Z <p>I'm trying to incorporate some JavaScript unit testing into my automated build process. Currently JSUnit works well with JUnit, but it seems to be abandonware and lacks good support for AJAX, debugging, and timeouts. </p> <p>Has anyone had any luck automating (with ANT) a unit testing library such as YUI test, JQuery's QUnit, or jQUnit (<a href="http://code.google.com/p/jqunit/" rel="nofollow">http://code.google.com/p/jqunit/</a>)?</p> <p>Note: I use a custom built AJAX library, so the problem with Dojo's DOH is that it requires you to use their own AJAX function calls and event handlers to work with any AJAX unit testing.</p> http://stackoverflow.com/questions/1882371/ie-not-firing-windowdocument-onclick-event-when-clicking-on-a-child-iframe 1 IE not firing (window|document).onclick event when clicking on a child iFrame Chris MacDonald 2009-12-10T16:54:16Z 2009-12-10T21:33:20Z <p>I've got a simple dropdown menu that I want to hide whenever you click anywhere on the page (not on the menu). This works fine in FF and IE until you add iFrames into the page. The menu doesn't hide in IE when you click on the iFrame. Works fine in FireFox. </p> <p>I tried using document.onclick and window.onclick.</p> <p>Any ideas?</p> <p>Edit: I would prefer not to have to add anything to the iframe. The page is dynamic, and different iframes could be loaded after the menu has already been created. It would be a hassle/undesirable to have to constantly watch for new iFrames and attach events to them. Yes I am aware of jQuery.live, but we don't use jQuery.</p> <p>I assume this behaviour is possible since it works on FireFox, I just feel as though I may just be attaching the listener to the wrong event type or the wrong element.</p> http://stackoverflow.com/questions/183214/javascript-callback-scope 6 JavaScript Callback Scope Chris MacDonald 2008-10-08T14:56:09Z 2009-11-27T17:27:43Z <p>I'm having some trouble with plain old JavaScript (no frameworks) in referencing my object in a callback function.</p> <pre><code>function foo(id) { this.dom = document.getElementById(id); this.bar = 5; var self = this; this.dom.addEventListener("click", self.onclick, false); } foo.prototype = { onclick : function() { this.bar = 7; } }; </code></pre> <p>Now when I create a new object (after the DOM has loaded, with a span#test)</p> <pre><code>var x = new foo('test'); </code></pre> <p>The 'this' inside the onclick function points to the span#test and not the foo object.</p> <p>How do I get a reference to my foo object inside the onclick function?</p> http://stackoverflow.com/questions/143747/is-it-possible-to-trigger-a-links-or-any-elements-click-event-through-javascr/143771#143771 9 Answer by Chris MacDonald for Is it possible to trigger a link's (or any element's) click event through JavaScript? Chris MacDonald 2008-09-27T15:05:56Z 2009-09-17T15:50:44Z <p><a href="http://jehiah.cz/archive/firing-javascript-events-properly" rel="nofollow">http://jehiah.cz/archive/firing-javascript-events-properly</a></p> <pre><code>function fireEvent(element,event) { if (document.createEvent) { // dispatch for firefox + others var evt = document.createEvent("HTMLEvents"); evt.initEvent(event, true, true ); // event type,bubbling,cancelable return !element.dispatchEvent(evt); } else { // dispatch for IE var evt = document.createEventObject(); return element.fireEvent('on'+event,evt) } } </code></pre> http://stackoverflow.com/questions/204924/how-do-you-dynamically-load-a-css-file-into-a-flex-application 2 How do you dynamically load a CSS file into a Flex application? Chris MacDonald 2008-10-15T14:27:58Z 2009-05-13T13:56:45Z <p>I know that you can apply CSS in order to style objects in Flex using the StyleManager:<br /> <a href="http://livedocs.adobe.com/flex/3/html/help.html?content=styles_07.html" rel="nofollow">http://livedocs.adobe.com/flex/3/html/help.html?content=styles_07.html</a> </p> <p>You can also load <strong>compiled</strong> CSS files (SWFs) dynamically:<br /> <a href="http://livedocs.adobe.com/flex/3/html/help.html?content=styles_10.html" rel="nofollow">http://livedocs.adobe.com/flex/3/html/help.html?content=styles_10.html</a> </p> <p>However, I'm dynamically creating my CSS files using a web GUI and a server-side script. If the CSS is changed, then the script would also need to compile the CSS into an SWF (which is not a viable option). Is there any way around this?</p> http://stackoverflow.com/questions/96086/developing-ui-in-javascript-using-tdd-principles 7 Developing UI in JavaScript using TDD Principles Chris MacDonald 2008-09-18T19:33:09Z 2009-04-22T18:40:51Z <p>I've had a lot of trouble trying to come up with the best way to properly follow TDD principles while developing UI in JavaScript. What's the best way to go about this?</p> <p>Is it best to separate the visual from the functional? Do you develop the visual elements first, and then write tests and then code for functionality?</p> http://stackoverflow.com/questions/127095/what-is-the-preferred-method-of-commenting-javascript-objects-methods/379179#379179 1 Answer by Chris MacDonald for What is the preferred method of commenting javascript objects & methods Chris MacDonald 2008-12-18T20:40:35Z 2008-12-18T20:40:35Z <p>Yahoo just released <a href="http://developer.yahoo.com/yui/yuidoc/" rel="nofollow">YUIDoc</a>.</p> <p>It's well documented, supported by Yahoo, and written in Python. It also uses a lot of the same syntax, so not many changes would have to be made to go from one to the other.</p> http://stackoverflow.com/questions/127095/what-is-the-preferred-method-of-commenting-javascript-objects-methods/127106#127106 8 Answer by Chris MacDonald for What is the preferred method of commenting javascript objects & methods Chris MacDonald 2008-09-24T13:26:00Z 2008-12-18T20:35:55Z <p>Written in Perl, there's <a href="http://jsdoc.sourceforge.net/" rel="nofollow">JSDoc</a></p> <pre><code>/** * Shape is an abstract base class. It is defined simply * to have something to inherit from for geometric * subclasses * @constructor */ function Shape(color){ this.color = color; } </code></pre> <p>There's also a Java version, called the <a href="http://jsdoctoolkit.org/" rel="nofollow">JSDoc Toolkit</a></p> http://stackoverflow.com/questions/344428/scope-of-returned-object-in-javascript-function/344507#344507 0 Answer by Chris MacDonald for scope of returned object in javascript function Chris MacDonald 2008-12-05T16:59:07Z 2008-12-05T16:59:07Z <pre><code>var test = function () { //private members var a = 1; var b = a + 1; //public interface return { geta : function () { return a; }, getb : function () { return b; } } }(); </code></pre> http://stackoverflow.com/questions/334520/which-javascript-library-you-recommend-to-use-with-j2ee-struts-ibatis/334598#334598 1 Answer by Chris MacDonald for Which JavaScript library you recommend to use with J2EE + Struts + iBatis ? Chris MacDonald 2008-12-02T16:32:17Z 2008-12-02T16:32:17Z <p>Here's a good article on <a href="http://www.ibm.com/developerworks/web/library/wa-aj-dojo/index.html?ca=dgr-lnxw16wa-aj-dojo&amp;S_TACT=105AGX59&amp;S_CMP=GRsitelnxw16" rel="nofollow">Dojo for Java Developers</a>.</p> http://stackoverflow.com/questions/331963/how-can-i-switch-a-text-box-for-a-label-div-or-span-using-jquery/332042#332042 1 Answer by Chris MacDonald for How can I switch a text box for a <label>, <div>, or <span> using jQuery? Chris MacDonald 2008-12-01T20:15:18Z 2008-12-01T20:15:18Z <p>Why not use an edit in place plugin like <a href="http://www.appelsiini.net/projects/jeditable" rel="nofollow">Jeditable</a>. This way you can generate your view mode and have each field editable at the click of a button.</p> http://stackoverflow.com/questions/326048/dojo-parameters-for-tabs 1 Dojo Parameters for Tabs Chris MacDonald 2008-11-28T15:36:21Z 2008-11-28T18:33:42Z <p>I'm having trouble with the Dojo documentation (as usual).<br /> On their <a href="http://api.dojotoolkit.org/jsdoc/dijit/1.2/dijit.layout.TabContainer" rel="nofollow">TabContainer API</a>, they list the second argument as an object called "params", but they never say what you can actually put in this params object. Can I specify the width? The height? Do I specify the id's of the divs I want to be the tabs inside the container?</p> <p>There's also no specification of what attributes I would put in HTML if I wanted to specify the tab containers to be parsed by the Dojo parser. I found the following example that lets you put the title, selected and closable options. Is there anything else?</p> <pre><code>&lt;div id="tabA1" dojoType="dijit.layout.ContentPane" title="First Tab" selected="true" closable="true"&gt; First Tab &lt;/div&gt; &lt;div id="tabA2" dojoType="dijit.layout.ContentPane" title="Second Tab" closable="true"&gt; Second Tab &lt;/div&gt; &lt;div id="tabA3" dojoType="dijit.layout.ContentPane" title="Third Tab" closable="true"&gt; Third Tab &lt;/div&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/264508/detecting-clicks-inside-an-iframe-from-outside/303416#303416 0 Answer by Chris MacDonald for Detecting clicks inside an iframe from outside? Chris MacDonald 2008-11-19T21:25:18Z 2008-11-19T21:25:18Z <p>One way that some sites have done is to create a bookmarklet. The user would browse around regularly, then if they find a site they want to add as a bookmark through your web application, they could just click on the bookmarklet.</p> <p>The bookmarklet is a javascript function that would perhaps show a modal dialog window that could then access your site's bookmarking capability remotely.</p> <p>For example, <a href="http://www.facebook.com/share_options.php" rel="nofollow">Facebook's Share Bookmarklet</a>, any number of <a href="http://www.kokogiak.com/delicious_linkbacks.html" rel="nofollow">Delicious</a> <a href="http://code.jalenack.com/delicious/" rel="nofollow">bookmarklets</a>.</p> <p>Your web application would then just provide a way to organize the bookmarks that people save using your bookmarklet. You could also look into a Firefox plugin, but bookmarklets are a more cross-browser friendly solution.</p> http://stackoverflow.com/questions/261098/what-is-the-best-way-to-include-the-icon-in-the-target-region-of-clickable-text/263365#263365 0 Answer by Chris MacDonald for What is the best way to include the icon in the target region of clickable text? Chris MacDonald 2008-11-04T20:46:12Z 2008-11-04T20:46:12Z <p>HTML</p> <pre><code>&lt;a id="icon" href="blah"&gt;blah&lt;/a&gt; </code></pre> <p>CSS</p> <pre><code>#icon { background: transparent url(img.gif) no-repeat right center; padding-right: 10px; } </code></pre> http://stackoverflow.com/questions/247085/can-i-change-the-dojo-namespace-to-something-other-than-dojo 2 Can I change the Dojo namespace to something other than dojo? Chris MacDonald 2008-10-29T14:49:04Z 2008-10-29T14:53:31Z <p>I know you can do it for jQuery using jQuery.noConflict. Is there a way to do something similar with Dojo?</p> http://stackoverflow.com/questions/232191/ie-borders-breaking-navigation/232307#232307 2 Answer by Chris MacDonald for IE borders breaking navigation Chris MacDonald 2008-10-24T02:30:28Z 2008-10-24T02:30:28Z <p>Try getting rid of the height rule on the anchor tags, and using top/bottom margins/paddings to ensure they fill the space. I find CSS using floats a lot easier when you don't try to enforce heights on elements.</p> http://stackoverflow.com/questions/47468/a-well-designed-web-app-gui-framework/220079#220079 1 Answer by Chris MacDonald for A Well-Designed Web App GUI Framework? Chris MacDonald 2008-10-20T21:50:06Z 2008-10-20T21:50:06Z <p>I'll suggest <a href="http://code.google.com/webtoolkit/" rel="nofollow">Google Web Toolkit</a> if you're a Java developer. <a href="http://gwt.google.com/samples/Showcase/Showcase.html#CwRichText" rel="nofollow">Examples</a></p> <p>I'll also second the suggestion for <a href="http://www.extjs.com/" rel="nofollow">Ext JS</a>. It's got a vast array of really slick looking UI elements, a incredibly well documented code, and a strong community.</p> http://stackoverflow.com/questions/210717/what-is-the-best-way-to-center-a-div-on-the-screen-using-jquery/210730#210730 2 Answer by Chris MacDonald for What is the best way to center a div on the screen using jQuery? Chris MacDonald 2008-10-17T00:21:37Z 2008-10-17T00:21:37Z <p><a href="http://www.jakpsatweb.cz/css/css-vertical-center-solution.html" rel="nofollow">Vertically</a></p> http://stackoverflow.com/questions/210643/in-javascript-can-i-make-a-click-event-fire-programmatically-for-a-file-input-e/210723#210723 0 Answer by Chris MacDonald for In JavaScript can I make a "click" event fire programmatically for a file input element? Chris MacDonald 2008-10-17T00:15:16Z 2008-10-17T00:15:16Z <p>See my post here:<br /> <a href="http://stackoverflow.com/questions/143747/is-it-possible-to-trigger-a-links-or-any-elements-click-event-through-javascript#143771">http://stackoverflow.com/questions/143747/is-it-possible-to-trigger-a-links-or-any-elements-click-event-through-javascript#143771</a></p> http://stackoverflow.com/questions/210377/get-all-elements-in-an-html-document-with-a-specific-css-class/210389#210389 6 Answer by Chris MacDonald for Get All Elements in an HTML document with a specific CSS Class Chris MacDonald 2008-10-16T21:32:10Z 2008-10-16T21:32:10Z <p>1) Get all elements in the document (document.getElementsByTagName('*'))<br /> 2) Do a regular expression match on the element's className attribute for each element</p> http://stackoverflow.com/questions/209201/how-to-make-dojo-a-bit-more-lightweight/209846#209846 2 Answer by Chris MacDonald for How to make Dojo a bit more lightweight? Chris MacDonald 2008-10-16T19:07:23Z 2008-10-16T19:07:23Z <p>What do you mean by 'loading Dojo'?<br /> If you mean opening a page with a clean cache, and the site takes a long time to load, then it may be because you're using a non-minified version of the library.</p> <p>If you mean loading some Dijits, or <a href="http://archive.dojotoolkit.org/nightly/dojotoolkit/dijit/themes/themeTester.html?theme=soria" rel="nofollow">a full-featured page</a>, then that's probably a combination of your browser's speed with JS, your computer's speed, and Dojo's speed.</p> <p>Try loading something similar from another framework like <a href="http://www.extjs.com" rel="nofollow">Ext JS</a> or <a href="http://ui.jquery.com" rel="nofollow">jQuery</a> to see if they are any different.</p> http://stackoverflow.com/questions/209418/what-are-some-javascript-unit-testing-and-mocking-frameworks-you-have-used/209673#209673 0 Answer by Chris MacDonald for What are some JavaScript Unit Testing and Mocking Frameworks you have used? Chris MacDonald 2008-10-16T18:17:22Z 2008-10-16T18:30:33Z <p><a href="http://www.jsunit.net" rel="nofollow">JsUnit</a> is run from either the browser, through its Eclipse plug-in, or automatically through an ANT task. You create an HTML page with a bunch of test functions, which must be named with the prefix ‘test’, include the JS file you are testing. When any assert within a function fails, the entire function fails and stops executing. There is no guaranteed order in which these tests are run. You can create setup() and teardown() functions.<br /> License: GPL, GLPL, MPL<br /> <strong>Pros</strong><br /> - Automation is relatively easy to implement<br /> - A lot of functionality<br /> - Syntax is similar to JUnit<br /> <strong>Cons</strong><br /> - Not great for DOM testing since it runs tests inside an iFrame.<br /> - No guarantee that tests will be run in the order they are written.<br /> - Can’t use firebug on testrunner page. Need to have another tab open with the actual test code. </p> http://stackoverflow.com/questions/209418/what-are-some-javascript-unit-testing-and-mocking-frameworks-you-have-used/209714#209714 2 Answer by Chris MacDonald for What are some JavaScript Unit Testing and Mocking Frameworks you have used? Chris MacDonald 2008-10-16T18:29:29Z 2008-10-16T18:29:29Z <p><a href="http://developer.yahoo.com/yui/yuitest/" rel="nofollow">YUI Test</a><br /> <a href="http://www.slideshare.net/nzakas/test-driven-development-with-yui-test-presentation" rel="nofollow">TDD With YUI Test</a></p> <p>YUI Test is the test framework for Yahoo’s User Interface library. It is used by Yahoo to test its own library, and has syntax similar to jUnit.</p> <p>Like jsUnit, YUI Test comes with its own logging console that can output info, warnings and errors in addition to the results of each test.</p> <p>YUI also provides the ability to <a href="http://developer.yahoo.com/yui/yuitest/#test-reporting" rel="nofollow">send reports</a> on the results in either JSON or XML format.</p> <p>YUI Test is BSD Licensed.</p> <p><strong>Pros</strong><br /> - Really good documentation<br /> - Active community<br /> - Regular releases<br /> - Syntax is similar to jUnit (test suites, asserts and setup/teardown)<br /> - Asynchronous support<br /> - Good for DOM testing<br /> - Tests always run sequentially in the order they are added to a suite </p> <p><strong>Cons</strong><br /> - Automation not trivial to implement,but less difficult than other frameworks </p> http://stackoverflow.com/questions/209418/what-are-some-javascript-unit-testing-and-mocking-frameworks-you-have-used/209692#209692 3 Answer by Chris MacDonald for What are some JavaScript Unit Testing and Mocking Frameworks you have used? Chris MacDonald 2008-10-16T18:22:56Z 2008-10-16T18:22:56Z <p><a href="http://docs.jquery.com/QUnit" rel="nofollow">QUnit</a><br /> <a href="http://code.google.com/p/jqunit/" rel="nofollow">jQUnit</a><br /> <a href="http://wiki.fluidproject.org/display/fluid/Writing+JavaScript+Unit+Tests" rel="nofollow">Writing JS tests with QUnit and jQUnit</a></p> <p>QUnit is the unit testing framework for the jQuery JavaScript framework. The testing framework itself uses the jQuery library, but the tests can be written for any JavaScript and do not require the code to use jQuery. JQUnit is a modified version of QUnit that adds in the setup, teardown, and assert functions that are more typical of an xUnit framework, and encapsulates everything in one global variable. </p> <p>The visual interface of the testrunner page is nice, allowing you to drill down and see each assert in every test method. Writing tests is fairly easy, and you can run the test code directly on the testRunner page [8]. This allows for easy and visible DOM testing.</p> <p>QUnit: MIT or GPL (choose) jQUnit: MIT License</p> <p><strong>Pros</strong><br /> - Asynchronous support<br /> - Good for DOM testing<br /> - Tests always run sequentially in the order they are added to a suite<br /> - Debug on test page using firebug<br /> - Syntax is similar to JUnit if using JQUnit, but simple to learn if using QUnit<br /> <strong>Cons</strong><br /> - Automation would be difficult to implement<br /> - Testing library requires jQuery </p> http://stackoverflow.com/questions/204612/how-to-use-codeigniter-mvc-views-inside-jquery-ajax-tabs/208671#208671 1 Answer by Chris MacDonald for How to use CodeIgniter/MVC views inside jQuery ajax tabs? Chris MacDonald 2008-10-16T13:56:31Z 2008-10-16T13:56:31Z <p>Unless the tabs are being loaded in iframes, they should have access to the js and css of the page loading them in. Can you do a test to confirm your suspicion that the JS and CSS aren't accessible?</p> http://stackoverflow.com/questions/76905/swfobject-scriptaculous-autocompleter-fail/208640#208640 1 Answer by Chris MacDonald for swfObject + scriptaculous Autocompleter = Fail Chris MacDonald 2008-10-16T13:49:40Z 2008-10-16T13:49:40Z <p>If you're using Firefox on a local machine, AJAX requests don't work for security reasons.</p> <p>Either upload to a server, or try something like <a href="http://www.apachefriends.org/en/xampp.html" rel="nofollow">xampp</a> to easily get a webserver running on your own machine.</p> http://stackoverflow.com/questions/205642/good-job-boards-for-developers/205791#205791 0 Answer by Chris MacDonald for Good job boards for developers? Chris MacDonald 2008-10-15T18:07:14Z 2008-10-15T18:07:14Z <p><a href="http://jobs.jsninja.com" rel="nofollow">http://jobs.jsninja.com</a> for JavaScript jobs</p> http://stackoverflow.com/questions/205631/javascript-loading-busy-indicator-or-transparent-div-over-page-on-event-click/205685#205685 0 Answer by Chris MacDonald for Javascript - loading/busy indicator or transparent div over page on event click Chris MacDonald 2008-10-15T17:40:38Z 2008-10-15T17:48:29Z <p>In addition to all of the above, don't forget to put an invisible iframe behind the shim, so that it shows up above select boxes in IE.</p> <p>Edit: This site, although it provides a solution to a more complex problem, does cover creating a modal background. <a href="http://www.codeproject.com/KB/aspnet/ModalDialogV2.aspx" rel="nofollow">http://www.codeproject.com/KB/aspnet/ModalDialogV2.aspx</a></p> http://stackoverflow.com/questions/193677/what-ideas-do-you-think-can-it-be-applied-to-this-gui-to-make-it-more-effective-f/194069#194069 2 Answer by Chris MacDonald for What ideas do you think can it be applied to this GUI to make it more effective for real people usage? Chris MacDonald 2008-10-11T13:27:14Z 2008-10-11T13:27:14Z <p>I think the best would be an autocomplete input field similar to the one used for tags on Stack Overflow and the one used for search on Facebook. Each letter you type narrows the field of results down and allows you to easily choose the right one with either the mouse or the arrow keys.</p> <p>You could also keep track of the most popular ones and sort the results by most frequently used, like Stack Overflow does with their suggested tags.</p> http://stackoverflow.com/questions/176324/why-does-everyone-like-jquery-more-than-prototype-script-aclo-us-or-mootools-or-w/176508#176508 3 Answer by Chris MacDonald for Why does everyone like jQuery more than prototype/script.aclo.us or mootools or whatever? Chris MacDonald 2008-10-06T22:44:45Z 2008-10-06T22:44:45Z <p>I find the scriptaculous documentation has, historically, been really lacking. Time has been spent documenting the API for all aspects of jQuery, proving good quality demos, examples and source code.</p> http://stackoverflow.com/questions/1882371/ie-not-firing-windowdocument-onclick-event-when-clicking-on-a-child-iframe/1882396#1882396 Comment by Chris MacDonald on IE not firing (window|document).onclick event when clicking on a child iFrame Chris MacDonald 2009-12-10T18:41:34Z 2009-12-10T18:41:34Z I decided to search for iFrames in the page whenever the menu was shown, and add a focus event listener to them. Thanks! http://stackoverflow.com/questions/1882371/ie-not-firing-windowdocument-onclick-event-when-clicking-on-a-child-iframe/1882549#1882549 Comment by Chris MacDonald on IE not firing (window|document).onclick event when clicking on a child iFrame Chris MacDonald 2009-12-10T17:25:10Z 2009-12-10T17:25:10Z I meant using something like $('iframe').live(&quot;click&quot;, handler) to attack an onclick handler to all future ones. Another good idea, but then if the menu was up I would lose being able to activate other links/buttons on the page in one click. The first click would be on the shim and it would take another click to hit the actual link/button. Users might be confused why they (sometimes) have to click twice on a link. http://stackoverflow.com/questions/1882371/ie-not-firing-windowdocument-onclick-event-when-clicking-on-a-child-iframe/1882471#1882471 Comment by Chris MacDonald on IE not firing (window|document).onclick event when clicking on a child iFrame Chris MacDonald 2009-12-10T17:14:39Z 2009-12-10T17:14:39Z Good idea, but still not the functionality I want. Thanks, might end up being a workaround. http://stackoverflow.com/questions/1882371/ie-not-firing-windowdocument-onclick-event-when-clicking-on-a-child-iframe/1882423#1882423 Comment by Chris MacDonald on IE not firing (window|document).onclick event when clicking on a child iFrame Chris MacDonald 2009-12-10T17:05:35Z 2009-12-10T17:05:35Z The dropdown is outside of the iframe... Thanks though ;) http://stackoverflow.com/questions/1882371/ie-not-firing-windowdocument-onclick-event-when-clicking-on-a-child-iframe/1882396#1882396 Comment by Chris MacDonald on IE not firing (window|document).onclick event when clicking on a child iFrame Chris MacDonald 2009-12-10T17:02:19Z 2009-12-10T17:02:19Z I would prefer not to have to add anything to the iframe. See edit of question. http://stackoverflow.com/questions/165404/resources-for-2d-game-physics/232064#232064 Comment by Chris MacDonald on Resources for 2d game physics Chris MacDonald 2009-07-10T17:20:46Z 2009-07-10T17:20:46Z here are some tips: provide a link. provide evidence, not opinion. personal experience works, but only if you give credence to your argument instead of just &quot;[it] works great&quot; http://stackoverflow.com/questions/926798/jquery-ui-number-spinner-event-question Comment by Chris MacDonald on jQuery UI number spinner event question Chris MacDonald 2009-05-29T18:27:27Z 2009-05-29T18:27:27Z &lt;label for=&quot;label1&quot;&gt;&lt;/label&gt; shouldn't this be id=&quot;label1&quot;? $(&quot;#label1&quot;).html($(&quot;#s1&quot;).spinner(&quot;value&quot;)); http://stackoverflow.com/questions/377999/what-anti-patterns-exist-for-javascript/378813#378813 Comment by Chris MacDonald on What anti-patterns exist for JavaScript? Chris MacDonald 2008-12-18T19:42:40Z 2008-12-18T19:42:40Z Probably because you use Prototype instead of jQuery... it seems like the SO crowd is very jQuery biased? http://stackoverflow.com/questions/335847/how-to-tell-if-a-dom-element-is-displayed/335961#335961 Comment by Chris MacDonald on How to tell if a DOM element is displayed? Chris MacDonald 2008-12-04T15:47:29Z 2008-12-04T15:47:29Z It would have been more helpful if you had provided the source code for this function of Prototype, to show how it could actually be done. http://stackoverflow.com/questions/338442/javascript-select-function-with-named-anchor Comment by Chris MacDonald on javascript select() function with named anchor Chris MacDonald 2008-12-03T20:42:58Z 2008-12-03T20:42:58Z What is the intent behind the action URL having &quot;#ATag&quot;? IE takes you to Test.html?AText=Enter+text+here. FF takes you to Test.html?AText=Enter+text+here.#ATag http://stackoverflow.com/questions/338442/javascript-select-function-with-named-anchor Comment by Chris MacDonald on javascript select() function with named anchor Chris MacDonald 2008-12-03T20:38:56Z 2008-12-03T20:38:56Z Which version? IE6? IE7? http://stackoverflow.com/questions/334520/which-javascript-library-you-recommend-to-use-with-j2ee-struts-ibatis Comment by Chris MacDonald on Which JavaScript library you recommend to use with J2EE + Struts + iBatis ? Chris MacDonald 2008-12-02T16:32:54Z 2008-12-02T16:32:54Z What are you using the JS library for? Do you need widgets and advanced UI components? What are your licensing restrictions? http://stackoverflow.com/questions/331326/javascript-source-code-analyzer Comment by Chris MacDonald on JavaScript Source Code Analyzer Chris MacDonald 2008-12-01T16:39:38Z 2008-12-01T16:39:38Z Can you provide an example code analyzer for a different language? http://stackoverflow.com/questions/330961/javascript-not-being-output/331347#331347 Comment by Chris MacDonald on javascript not being output Chris MacDonald 2008-12-01T16:38:24Z 2008-12-01T16:38:24Z You need a newline/escaping character ('\') at the end of each line in multiline javascript strings http://stackoverflow.com/questions/330961/javascript-not-being-output Comment by Chris MacDonald on javascript not being output Chris MacDonald 2008-12-01T16:36:27Z 2008-12-01T16:36:27Z There's some malformed HTML, maybe a copy/paste issue, with the &lt;style ty' part at the end.