User Mike Robinson - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T17:06:13Z http://stackoverflow.com/feeds/user/43687 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1940706/a-simple-ajax-seo-solution/1940737#1940737 1 Answer by Mike Robinson for A simple Ajax + SEO solution? Mike Robinson 2009-12-21T15:27:39Z 2009-12-21T15:27:39Z <p>This will work - up to a point - and you'd be better off putting the links on a different page. You can trust that your users will go with the path of least resistance. If your search works better than your listing, you'll be fine there.</p> <p>Regarding Google, what you described sounds a lot like a sitemap. That'll work OK, but consider breaking it up into multiple pages if you exceed around 150 links (that's about the time the searchbot gives up). The page should also be something else than index.php, and then just provide a link to it on the home page. A lot of news sites categorize by day or week, but you could also use alphabetical or other. Use whatever system works best for your site. </p> http://stackoverflow.com/questions/1532093/is-there-an-ajax-service-for-doubleclick-dart 0 Is there an AJAX service for doubleclick (DART) Mike Robinson 2009-10-07T14:43:26Z 2009-12-15T20:19:19Z <p>I'm trying to put some ads on my site and would like to load them after the page has loaded. We're using Doubleclick DART (please, don't tell me to use Google AdSense. I know, but that's a battle for another day). Doubleclick currently recommends embedding inline script tags like so: </p> <pre><code>&lt;script language=Javascript1.1 src="http://ad.doubleclick.net/adj/sitename.dart/ zonename;abr=!webtv;kw=value;sz=widthxheight;ord=value"&gt; &lt;/script&gt; </code></pre> <p>This return a document.write with the ad html. </p> <p>Does anyone know of a way to request the ads with an AJAX call so that only HTML is returned, thus allowing me to place the ads at my discretion? I've seen this done for mobile ads, but haven't found anything for websites yet. </p> http://stackoverflow.com/questions/1908590/jquery-how-do-i-select-all-p-children-of-my-parent/1908608#1908608 0 Answer by Mike Robinson for jQuery: How do I select all P children of my parent? Mike Robinson 2009-12-15T16:23:46Z 2009-12-15T19:29:52Z <p>I like using closest, since it bubbles up:</p> <pre><code>$(this).closest("div").find("p").show() </code></pre> <p>or consider:</p> <pre><code>$(this).siblings("p").show(); </code></pre> <p><strong>[Update]</strong> Based on comments below and other answers:</p> <pre><code>$(this).siblings("p.hidden").removeClass("hidden"); </code></pre> http://stackoverflow.com/questions/1902921/jquery-checkboxes-group-check/1904180#1904180 1 Answer by Mike Robinson for JQuery Checkboxes Group check Mike Robinson 2009-12-14T23:11:41Z 2009-12-14T23:11:41Z <p>So I'm going to try and answer this question (hey, it's a challenge!). </p> <p>First let me point out why people don't like your question though:</p> <ol> <li>Duplicate ids: id=child-1 appears multiple times, as do others. Ids should be unique, otherwise you'll run into selector problems (getElementById really doesn't like it)</li> <li>Inline javascript: It's hard to determine from looking at the code what actions happen when. You should isolate all functionality in a separate script file. This will make maintenance significantly easier in the future, and allow the browser to cache functionality. </li> <li>&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&nbsp; .... consider using "padding-left: 15px". Do it for us.</li> </ol> <p>That all being said, consider using a more targeted selector. In this example, notice <strong>name^=</strong></p> <pre><code>function toggleParentCheckboxes(current, form) { var name = current.name.replace(/\[[^\]]*\]/, ""); var selector = ":checkbox[name^='" + name + "[']"; var checked = ($(selector).length == $(selector + ":checked").length); $("#"+ form +" :checkbox[name='" + name + "']").attr("checked", checked); } </code></pre> http://stackoverflow.com/questions/1868773/jquery-clearing-an-input-text-field/1868863#1868863 1 Answer by Mike Robinson for JQuery clearing an input text field Mike Robinson 2009-12-08T18:19:18Z 2009-12-08T18:19:18Z <p>Calling "jQuery("[id$='serialNumForm:inputSN']")" doesn't return you an input element - instead it returns you a jQuery object. You have two options:</p> <p>Use this to get the core element:</p> <pre><code>jQuery("[id$='serialNumForm:inputSN']").get(0) </code></pre> <p>Or, as Justin mentioned, use the jQuery val() method:</p> <pre><code>jQuery("[id$='serialNumForm:inputSN']").val(""); </code></pre> <p>The second way is more reliable, since it applies the value to all matching elements, while the first only applies it to the first matching element (as indicated by the 0 in the get(0) )</p> http://stackoverflow.com/questions/1823148/future-popular-languages/1823187#1823187 2 Answer by Mike Robinson for Future Popular Languages Mike Robinson 2009-11-30T23:42:16Z 2009-11-30T23:42:16Z <p>If you look around SO, you'd assume <a href="http://www.golfscript.com/golfscript/" rel="nofollow">GolfScript</a> is pretty popular. It depends on what you're trying to achieve, and how many people like you are trying to do the same thing.</p> http://stackoverflow.com/questions/1745206/jquery-beginner-questions/1745388#1745388 0 Answer by Mike Robinson for jQuery beginner questions Mike Robinson 2009-11-16T22:53:40Z 2009-11-16T22:53:40Z <p>Scripts go at the bottom of the document for speed reasons. While your browser is downloading javascript, it isn't doing anything else (including downloading the rest of the document).</p> <p>You can load child Javascript files anywhere, but again, bottom of the page is best. A typical setup is:</p> <ol> <li>Reference jQuery (preferably the one hosted at Google: <strong><a href="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" rel="nofollow">http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js</a></strong> - doing so highly increases the likelihood that the user already has a cached version in their browser, which means they won't need to download it again</li> <li>Reference child objects</li> <li>Call $(document).ready</li> </ol> <p>For further information on where to put you Javascript files, use the ySlow plugin and read everything by Steve Souders ("Even Faster Websites" comes to mind, although it's a bit high level).</p> <p>Frame busting should be easy enough to do on your own, and jQuery comes with some cool selectors and enhanced functionality for forms. </p> http://stackoverflow.com/questions/1717746/can-user-disable-javascript-at-client-side-is-it-possible/1717776#1717776 1 Answer by Mike Robinson for Can User disable javascript at client side ? is it possible ? Mike Robinson 2009-11-11T20:15:34Z 2009-11-11T20:15:34Z <p>You can't secure a webpage even if javascript is enabled. Since Javascript is transmitted to the client in clear text it is the absolute worst choice to use for security.</p> <p>Like Kevin said, server side validation is your only reliable option.</p> <p>And, to guess at your question, it's either:</p> <p>Yes, a client can disable Javascript on their browser <strong>OR</strong> No, you (the website operator) cannot disable a clients Javascript with your website</p> http://stackoverflow.com/questions/1711335/how-do-you-normally-make-a-program-look-beautiful/1711617#1711617 5 Answer by Mike Robinson for How do you normally make a program look beautiful? Mike Robinson 2009-11-10T22:14:34Z 2009-11-10T22:14:34Z <p><img src="http://www.michaeljamesrobinson.com/designers.jpg" alt="DESIGNERS DESIGNERS DESIGNERS DESIGNERS....DESIGNER DESIGNERS DESIGNERS DESIGNERS"></p> http://stackoverflow.com/questions/987474/are-there-alternatives-to-cssdoc 2 Are there alternatives to CSSDoc? Mike Robinson 2009-06-12T15:54:49Z 2009-11-08T13:17:44Z <p>So I like JSDoc, and have been using something similiar for CSS (<a href="http://cssdoc.net/" rel="nofollow">CSSDoc</a>). There doesn't seem to be any support for it right now, so I was wondering if an alternative has taken it's place or already exists?</p> http://stackoverflow.com/questions/1693535/javascript-doesnt-work-in-ie-sudoku-puzzle/1693542#1693542 2 Answer by Mike Robinson for JavaScript doesn't work in IE: Sudoku Puzzle Mike Robinson 2009-11-07T16:18:58Z 2009-11-07T16:18:58Z <p>First guess: you have to end your lines with semi-colons</p> http://stackoverflow.com/questions/1691557/what-are-the-overall-most-valuable-profitable-programming-expertises/1691611#1691611 2 Answer by Mike Robinson for What are the overall most valuable/profitable programming expertises? Mike Robinson 2009-11-07T01:38:24Z 2009-11-07T01:38:24Z <p>So to summarize: what skills get me the most money?</p> <p>The answer invariably becomes: the ones you enjoy doing. Anything you enjoy doing is easier to do, easier to learn. You won't wake up every morning with a sense of dread and self-loathing for selling out. Don't bother chasing money, it'll find you if you're successful.</p> <p>Or learn PHP.</p> http://stackoverflow.com/questions/1691574/if-handcoded-webpage-displays-the-same-as-wysiwyg-generated-page-what-did-i-gain/1691590#1691590 2 Answer by Mike Robinson for If handcoded webpage displays the same as WYSIWYG generated page, what did I gain? Can I compete with WYSIWYG? Mike Robinson 2009-11-07T01:32:26Z 2009-11-07T01:32:26Z <p>Yes, you can and always will win that battle too. Maybe not today, or tomorrow, but soon the cruft associated with WYSIWIG editors will make maintenance a pain in the butt for him. There is also the case of understanding the language wholly; this will help you tremendously when you encounter the bug that cannot be dealt with by simple drag and drop. </p> <p>Also consider that you have much greater control of what your site looks like from a <strong>data</strong> point of view. When developing serious web applications, there is no way you can wing it with a WYSIWIG editor.</p> <p>--I'm sure others have more to say, but that's my soapbox moment</p> http://stackoverflow.com/questions/1683532/how-do-i-package-a-custom-truetype-font-with-a-web-site-so-the-browsers-will-rend/1683583#1683583 2 Answer by Mike Robinson for How do I package a custom TrueType font with a web site so the browsers will render it? Mike Robinson 2009-11-05T21:02:25Z 2009-11-05T21:02:25Z <p>You have lots of options, none of them perfect. Smashing Magazine has a great article about rich fonts - most of them involve flash / image replacement. </p> <p><a href="http://www.smashingmagazine.com/2009/10/22/rich-typography-on-the-web-techniques-and-tools/" rel="nofollow">http://www.smashingmagazine.com/2009/10/22/rich-typography-on-the-web-techniques-and-tools/</a></p> http://stackoverflow.com/questions/1681679/disabling-links-to-stop-double-clicks-in-jquery/1681736#1681736 1 Answer by Mike Robinson for Disabling links to stop double-clicks in JQuery Mike Robinson 2009-11-05T16:22:18Z 2009-11-05T16:22:18Z <p>Events are only bound on document.ready, you should handle this with a .live event:</p> <pre><code>$("a.button").live("click", function() { $(this).attr("disabled", "disabled"); }); $("a[disabled]").live("click", function() { return false; }); </code></pre> http://stackoverflow.com/questions/1631737/delay-in-receiving-ajax-results-using-jquery/1631773#1631773 0 Answer by Mike Robinson for Delay in receiving Ajax results using jQuery Mike Robinson 2009-10-27T15:50:30Z 2009-10-27T15:50:30Z <p>I'll update this with more suggestions, but for now do some performance testing on the success function:</p> <pre><code>success:function(data){ console.time("data render"); $("#HippoContainer_inner").html(data); console.timeEnd("data render"); } </code></pre> http://stackoverflow.com/questions/1626010/what-is-the-difference-between-container1-and-container2-find/1626040#1626040 2 Answer by Mike Robinson for What is the difference between $("*", $("#container1")) and $("#container2").find("*")? Mike Robinson 2009-10-26T17:14:25Z 2009-10-26T17:14:25Z <p>When used properly, the context selector is no different from find. Resig has stated that he dislikes the context selector and would prefer people use .find(), since it makes more sense semantically. </p> <p>There's a lot of ways to screw up context; for example, passing a string does not work and causes the selector to default to parsing the entire document. I'm fairly sure your example is using the context correctly (no time to test), but again, using .find() beats this uncertainty.</p> http://stackoverflow.com/questions/1594873/need-to-take-two-text-field-values-and-add-together-to-another-field/1594926#1594926 2 Answer by Mike Robinson for Need to take two text field values and add together to another field Mike Robinson 2009-10-20T14:17:06Z 2009-10-20T14:17:06Z <p>I agree it should be server side, but just to answer your question:</p> <pre><code>var combinedName = $("input[name='first_name']").val() + $("input[name='last_name']").val(); $("input[name='screen_name']").val(combinedName); </code></pre> http://stackoverflow.com/questions/1591163/jquery-image-rotator-with-iphone-like-page-dots/1591279#1591279 0 Answer by Mike Robinson for Jquery Image Rotator with iPhone-like Page dots Mike Robinson 2009-10-19T21:29:34Z 2009-10-19T21:29:34Z <p>Check out jQuery Tools scrollable: <a href="http://flowplayer.org/tools/demos/scrollable/plugins/index.html" rel="nofollow">http://flowplayer.org/tools/demos/scrollable/plugins/index.html</a></p> <p>You could set up the container to only show one image a time instead of five, and use the navi plugin. Or roll your own, all you'd really need to do is match the index of the image shown to the index of a list item and assign an "active" class....</p> http://stackoverflow.com/questions/1562454/have-you-ever-sacrificed-bleeding-edge-insert-language-framework-here-for-a-job/1562464#1562464 0 Answer by Mike Robinson for Have you ever sacrificed bleeding-edge [insert language/framework here] for a job with less stress? Mike Robinson 2009-10-13T19:35:19Z 2009-10-13T19:35:19Z <p>Did you ever consider becoming a Project Manager?</p> http://stackoverflow.com/questions/1555902/how-to-put-a-click-function-inside-a-callback-function/1555942#1555942 0 Answer by Mike Robinson for How to put a click function inside a callback function? Mike Robinson 2009-10-12T17:41:58Z 2009-10-12T17:41:58Z <p>Instead of binding the click on the callback, have you considered using the .live(type, fn) event of jQuery?</p> <p><a href="http://docs.jquery.com/Events/live#typefn" rel="nofollow">http://docs.jquery.com/Events/live#typefn</a> </p> http://stackoverflow.com/questions/1541095/why-doesnt-jquery-let-me-do-this/1541099#1541099 9 Answer by Mike Robinson for Why doesn't Jquery let me do this Mike Robinson 2009-10-08T23:28:55Z 2009-10-08T23:28:55Z <pre><code>$("#main").attr("src", "02.jpg"); </code></pre> http://stackoverflow.com/questions/1532138/what-are-the-implications-of-deleting-a-user-account/1532194#1532194 10 Answer by Mike Robinson for What are the implications of deleting a user account? Mike Robinson 2009-10-07T15:00:50Z 2009-10-07T15:00:50Z <p>This is a pretty broad topic, but some of the ones I've experienced are:</p> <ul> <li>Accounts can be tied to comments, deleting the account screws up the comments</li> <li>Accounts can tied to other systems (community server, authorize.net and blackbox web services) and can be hard to delete on those</li> <li>Cascade, like you mentioned</li> <li>Prevent user stupidity - accidental delete is hard to undo, and even trickier on a subscription site</li> <li>Return on investment - try explaining to your boss why you're doing a weeks worth of data integrity testing instead of setting a boolean to false</li> <li>Marketing - "We have 85,000 registered users" (see: myspace)</li> </ul> http://stackoverflow.com/questions/1520411/standard-and-best-practice-in-dealing-with-muliple-complex-columns-with-forms/1520723#1520723 0 Answer by Mike Robinson for Standard and Best practice in dealing with Muliple/Complex Columns with Forms Mike Robinson 2009-10-05T15:18:09Z 2009-10-05T15:18:09Z <p>There is no standard for complex forms, but there are plenty of blog posts claiming to have figured out the perfect way to approach this problem. Most of them are well thought out, but ultimately you have to pick the one you're most comfortable with. I have some suggestions though:</p> <ul> <li><p>Check out the US postal service change of address form. It's surprisingly well done</p></li> <li><p>If you have <em>lots</em> of forms, using a grid system like 960.gs, blueprint.css, or YUI grids (shudder) is an easy way to implement a form. <em>However</em> grid systems are definitely considered bloat if that's the only place you'll use them.</p> <ul> <li>Do a search for "tableless forms" on Google. You will see a lot of different implementations. Choose the one you like.</li> </ul></li> </ul> http://stackoverflow.com/questions/200610/what-is-the-biggest-coding-error-mistake-ever/1473066#1473066 2 Answer by Mike Robinson for What is the biggest coding error/mistake ever... Mike Robinson 2009-09-24T17:23:54Z 2009-09-24T17:23:54Z <p><img src="http://www.intelliadmin.com/images/Windows%20ME.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1427567/is-there-an-analytics-tool-for-webos-apps 1 Is there an analytics tool for webOS apps? Mike Robinson 2009-09-15T14:31:11Z 2009-09-22T09:24:08Z <p>I need to track individual page views on my webOS app, something akin to Google Analytics. I understand that tracking on web apps may be barebones, but anything is better than nothing. Does anyone know of an analytics tool for webOS, or one that is compatible?</p> <p>The nice to haves are: support for offline mode, minimal use of bandwidth, and custom variables. </p> http://stackoverflow.com/questions/1456925/js-if-statement-issue-how-to-find-element-in-body/1456938#1456938 2 Answer by Mike Robinson for JS: if statement issue, how to find element in body? Mike Robinson 2009-09-21T21:19:44Z 2009-09-21T21:19:44Z <p>jQuery returns an empty list when it can't find any elements, so your statement always works out to be true.</p> <p>Try:</p> <pre><code>if(jQuery("div.video").length &gt; 0){ arrows = false; } .... </code></pre> http://stackoverflow.com/questions/1380697/how-to-create-toggle-buttons-within-a-dynamically-rendered-list 1 How to create toggle buttons within a dynamically rendered list Mike Robinson 2009-09-04T17:59:24Z 2009-09-18T14:06:57Z <p>For my palm pre app I have a dynamically generated list (pulling in data from SQLite, loading into the model, binding). This works fine, but now I need to add an on/off toggle to each of the dynamically generated items. Including the toggle switch in the template works, but I can't assign the widget functionality properly. I'm trying to bind the widget in the scene, but no luck so far. </p> <p>So does anyone know of any webOS tutorials (or have an example) of how to bind widgets within a dynamic list?</p> http://stackoverflow.com/questions/1380697/how-to-create-toggle-buttons-within-a-dynamically-rendered-list/1444763#1444763 0 Answer by Mike Robinson for How to create toggle buttons within a dynamically rendered list Mike Robinson 2009-09-18T14:06:57Z 2009-09-18T14:06:57Z <p>Got an answer from the Palm Dev's themselves:</p> <p>If you use the .value property of a toggle button to set it's state, you don't to call setupWidget on the toggle button at all. Instead, bind a .value property to each list item model. Here's the steps:</p> <p><strong>1. In the list-item.html template:</strong></p> <pre><code>&lt;div class='palm-row'&gt; &lt;div class='palm-row-wrapper'&gt; &lt;div x-mojo-element="ToggleButton"&gt;&lt;/div&gt; #{title} &lt;/div&gt; &lt;/div&gt; </code></pre> <p><strong>2. In the list-assistant.js setup function (note, I'm using jQuery)</strong></p> <pre><code>Mojo.Event.listen(jQuery("#my-list").get(0), Mojo.Event.propertyChange, this.listPropertyChangeHandler.bind(this)); </code></pre> <p><strong>3. In the listPropertyChangeHandler</strong></p> <pre><code>ListAssistant.prototype.listPropertyChangeHandler = function(event){ var newValue = event.model.value; } </code></pre> http://stackoverflow.com/questions/1417953/html-floating-left-and-right-resolution-resize-problems-by/1417972#1417972 0 Answer by Mike Robinson for HTML: Floating left and right resolution / resize problems by % Mike Robinson 2009-09-13T15:16:47Z 2009-09-13T15:16:47Z <ol> <li><p>Once you resize too small, the percentages width will be smaller than the text content within your element. The browser cannot concatenate words, so the element is forced to have a min-width. Try putting the elements in a wrapper with an assigned min-width.</p></li> <li><p>Between these two bars you have a space of 3%. 3% of 1000px is 30px. 3% of 2000px is 60px. Therefore if you right element is floating right, it makes sense you'll see that additional space. Try floating the element left. </p></li> </ol> http://stackoverflow.com/questions/1946970/find-and-hide-div-jquery/1947027#1947027 Comment by Mike Robinson on Find and hide div (jQuery) Mike Robinson 2009-12-22T15:23:06Z 2009-12-22T15:23:06Z Might want to add event.preventDefault() into that. Or at least return false. http://stackoverflow.com/questions/1946970/find-and-hide-div-jquery Comment by Mike Robinson on Find and hide div (jQuery) Mike Robinson 2009-12-22T15:21:42Z 2009-12-22T15:21:42Z Read the documentation on attribute selectors: <a href="http://docs.jquery.com/Selectors" rel="nofollow">docs.jquery.com/Selectors</a> http://stackoverflow.com/questions/1946970/find-and-hide-div-jquery/1946993#1946993 Comment by Mike Robinson on Find and hide div (jQuery) Mike Robinson 2009-12-22T15:20:32Z 2009-12-22T15:20:32Z Looks like you got -1 because your selector will be &quot;##mydiv&quot; http://stackoverflow.com/questions/1946970/find-and-hide-div-jquery Comment by Mike Robinson on Find and hide div (jQuery) Mike Robinson 2009-12-22T15:17:41Z 2009-12-22T15:17:41Z Agreed, this does sound a lot like homework http://stackoverflow.com/questions/700205/what-is-your-best-friend-as-a-programmer/700297#700297 Comment by Mike Robinson on What is your "best friend" as a programmer? Mike Robinson 2009-12-17T16:43:22Z 2009-12-17T16:43:22Z +1 for the gold http://stackoverflow.com/questions/1902921/jquery-checkboxes-group-check Comment by Mike Robinson on JQuery Checkboxes Group check Mike Robinson 2009-12-14T22:16:21Z 2009-12-14T22:16:21Z Agreeing with the others - when asking someone for their help, it's best to provide a legible question and not insult their intelligence. http://stackoverflow.com/questions/1758576/multiple-left-hand-assignment-with-javascript/1758592#1758592 Comment by Mike Robinson on Multiple left-hand assignment with JavaScript Mike Robinson 2009-11-18T19:52:09Z 2009-11-18T19:52:09Z Damn, beat me to it. http://stackoverflow.com/questions/579302/is-there-a-stable-programming-language-for-web-programming/579462#579462 Comment by Mike Robinson on Is there a stable Programming Language for Web Programming? Mike Robinson 2009-11-16T17:24:21Z 2009-11-16T17:24:21Z Yeah, you'll have much bigger things to worry about http://stackoverflow.com/questions/1691557/what-are-the-overall-most-valuable-profitable-programming-expertises/1691611#1691611 Comment by Mike Robinson on What are the overall most valuable/profitable programming expertises? Mike Robinson 2009-11-07T02:02:53Z 2009-11-07T02:02:53Z (Yeah, actually I hate PHP. But hey, sarcasm!) http://stackoverflow.com/questions/1691557/what-are-the-overall-most-valuable-profitable-programming-expertises Comment by Mike Robinson on What are the overall most valuable/profitable programming expertises? Mike Robinson 2009-11-07T01:34:55Z 2009-11-07T01:34:55Z Salary negotiation! http://stackoverflow.com/questions/1646305/what-is-the-easiest-way-to-convert-table-tags-into-standard-css Comment by Mike Robinson on What is the easiest way to convert table tags into standard css? Mike Robinson 2009-10-29T20:40:24Z 2009-10-29T20:40:24Z &quot;Is there an easier way to automatically convert it?&quot; - there's your problem http://stackoverflow.com/questions/1639484/problem-with-javascript-not-inputting-value-into-hidden-fields Comment by Mike Robinson on Problem with Javascript not inputting value into hidden fields Mike Robinson 2009-10-28T19:27:39Z 2009-10-28T19:27:39Z Works for me in FF on the mac with a blank slate webpage. You sure you're not doing something else wrong? http://stackoverflow.com/questions/1626798/ajax-jquery-webhosting-question Comment by Mike Robinson on ajax jquery webhosting question Mike Robinson 2009-10-26T19:22:33Z 2009-10-26T19:22:33Z Got some code we can look at? http://stackoverflow.com/questions/1614814/copyright-viloation-two-images-are-visually-identical-but-binary-is-not Comment by Mike Robinson on Copyright viloation? Two images are visually identical but binary is not Mike Robinson 2009-10-23T17:22:39Z 2009-10-23T17:22:39Z As jitter said, yes it's still copyright violation. The owner hasn't copyrighted the bits, they've copyrighted the original work. If you're using the original work then it's a copyright violation. Take a look at the Shepard Fairey / Obama Hope mess - he -based- a painting on a photo and still got sued. http://stackoverflow.com/questions/1594873/need-to-take-two-text-field-values-and-add-together-to-another-field/1594903#1594903 Comment by Mike Robinson on Need to take two text field values and add together to another field Mike Robinson 2009-10-20T14:25:15Z 2009-10-20T14:25:15Z Check your jQuery, it doesn't work