User Diodeus - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T05:43:53Z http://stackoverflow.com/feeds/user/12579 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1930002/how-lightboxes-for-pics-works-they-use-iframes-how-they-download-pics/1930027#1930027 1 Answer by Diodeus for how lightboxes for pics works? they use iframes? how they download pics? Diodeus 2009-12-18T18:51:00Z 2009-12-18T18:51:00Z <p>This is similar to a modal dialog. A translucent overlay is put over the entire screen. A DIV is placed over top of the overlay that displays the picture and controls. Images are usually supplied as a list. It's all JavaScript and CSS. JavaScript is used to flip the images.</p> http://stackoverflow.com/questions/1929011/what-is-the-best-way-to-get-clean-semantic-xhtml-from-ms-word-documents/1929291#1929291 0 Answer by Diodeus for What is the best way to get clean semantic XHTML from MS word documents? Diodeus 2009-12-18T16:29:50Z 2009-12-18T16:29:50Z <p>There is no dependable way to clean up WORD docs and make them into nice HTML. If the document has any special characters, they are often encoded as Windows charset instead of UTF-8, so they just "break" when displayed online. The list goes on. You often end up with silliness like:</p> <pre><code>&lt;strong&gt;hello&lt;/strong&gt;&lt;strong&gt;th&lt;strong&gt;er&lt;/strong&gt;e&lt;/strong&gt;&lt;i&gt;&lt;/i&gt; </code></pre> <p>The only depandable method is to paste it into Notepad and mark it up manually. You can write a few macros to do things like insert <code>&lt;p&gt;&lt;/p&gt;</code> at paragraph breaks, but that's about it.</p> <p>If there is a huge volume of material that needs to go online from Word, you may be better off using a PDF.</p> http://stackoverflow.com/questions/1928300/any-library-to-show-records-in-a-grid/1928520#1928520 0 Answer by Diodeus for Any library to show records in a grid. Diodeus 2009-12-18T14:29:55Z 2009-12-18T14:29:55Z <blockquote> <p>MyTableGrid is a JavaScript based DataGrid control built on the Prototype library. It allows you to display your data in a simple and flexible way.</p> </blockquote> <p><a href="http://pabloaravena.info/mytablegrid/" rel="nofollow">http://pabloaravena.info/mytablegrid/</a></p> <p>PHP example is <a href="http://pabloaravena.info/mytablegrid/samples/sample2.php" rel="nofollow">here.</a></p> http://stackoverflow.com/questions/1921345/caching-ajax-query-results-with-prototype/1922123#1922123 0 Answer by Diodeus for Caching AJAX query results with prototype Diodeus 2009-12-17T14:23:24Z 2009-12-18T14:24:31Z <p>If you start building a results tree with JSON you can check of a particular branch (or entry) exists in the tree. If it doesn't you can go fetch it from the server.</p> <p>You can then serialize your JSON data and store it in <a href="http://www.thomasfrank.se/sessionvars.html" rel="nofollow">window.name</a>. Then you can persist the data from page to page as well.</p> <p>Edit:</p> <p>Here's a simple way to use JSON for this type of task:</p> <pre><code>var clientData = {} clientData.dataset1 = [ {name:'Dave', age:'41', userid:2345}, {name:'Vera', age:'32', userid:9856} ] if(clientData.dataset2) { alert("dataset 2 loaded") } else { alert("dataset 2 must be loaded from server") } if(clientData.dataset1) { alert(clientData.dataset1[0].name) } else { alert("dataset 1 must be loaded from server") } </code></pre> http://stackoverflow.com/questions/1923278/best-way-to-add-metadata-to-html-elements/1923522#1923522 0 Answer by Diodeus for Best way to add metadata to HTML elements Diodeus 2009-12-17T18:01:14Z 2009-12-17T18:01:14Z <p>The <a href="http://prototypejs.org" rel="nofollow">Prototype library</a> supports:</p> <p><code>element.store("key","value")</code></p> <p>and</p> <p><code>element.retrieve("key","value")</code>.</p> <p>Simple. Nice. Effective.</p> http://stackoverflow.com/questions/1917380/how-to-avoid-the-unresponsive-script-popup-in-firefox-with-long-running-javascrip/1917552#1917552 0 Answer by Diodeus for How to avoid the Unresponsive Script popup in Firefox with long running Javascript? Diodeus 2009-12-16T20:43:01Z 2009-12-16T20:43:01Z <p>You can use the script from this question to break processing long lists into smaller chunks:</p> <p><a href="http://stackoverflow.com/questions/210821/#210994">http://stackoverflow.com/questions/210821/#210994</a></p> http://stackoverflow.com/questions/1916617/maximum-number-of-entries-in-a-listbox/1916641#1916641 1 Answer by Diodeus for Maximum number of entries in a ListBox Diodeus 2009-12-16T18:24:19Z 2009-12-16T18:24:19Z <p>I would suggest that an autocompleter be used whenever a list is larger than about 50 items.</p> http://stackoverflow.com/questions/1910113/offset-height-using-prototype/1910792#1910792 2 Answer by Diodeus for Offset height using Prototype Diodeus 2009-12-15T22:13:15Z 2009-12-15T22:13:15Z <p>Here's a diagram from <a href="http://thinkweb2.com/projects/prototype/prototype-1602-cheat-sheet/" rel="nofollow">Kangax's cheat sheet</a>, who is one of the members of the Prototype DEV team.</p> <p><img src="http://preview.moveable.com/JM/dev/prototype%5Fcheatsheet%5F1.6.0.png" alt="alt text"></p> <p>You could add the viewport offset and the scroll offsets, but I'm not sure of this will contain the same issue.</p> <p>Most of the time I use this <a href="http://www.quirksmode.org/js/findpos.html" rel="nofollow">Quirksmode script</a> for finding element positions:</p> <pre><code>function findPos(obj) { //find coordinates of a DIV var curleft = curtop = 0; if (obj.offsetParent) { curleft = obj.offsetLeft curtop = obj.offsetTop while (obj = obj.offsetParent) { curleft += obj.offsetLeft curtop += obj.offsetTop } } return [curleft, curtop]; } </code></pre> http://stackoverflow.com/questions/1909119/javascript-returned-by-ajax-is-not-working-how-to-work-with-javascript/1909162#1909162 0 Answer by Diodeus for JavaScript returned by AJAX is not working. How to work with JavaScript? Diodeus 2009-12-15T17:48:47Z 2009-12-15T17:48:47Z <p>By default JavaScript contained with AJAX responses is not executed.</p> <p>There is no point in building an Ajax handler from scratch when this problem has already be solved in various libraries just as jQuery and Prototype.</p> http://stackoverflow.com/questions/1902972/automatic-page-reload-when-accessed-from-pressing-the-back-button/1902983#1902983 1 Answer by Diodeus for Automatic page reload when accessed from pressing the back button Diodeus 2009-12-14T19:36:05Z 2009-12-14T19:36:05Z <p>Set a cookie upon login. Have the home page check for the cookie and redirect accordingly.</p> http://stackoverflow.com/questions/1890615/flash-movie-not-respecting-negative-margin-in-container-html 1 Flash movie not respecting negative margin in container HTML Diodeus 2009-12-11T20:19:51Z 2009-12-12T07:55:05Z <p>I have to place a flash movie into an existing layout. It is replacing placeholder image of the same size. The DIV holding the image has a negative top margin. When the flash movie is placed in the same spot there is a gap at the top of the DIV equal to the amount of negative margin. I cannot seem to get the movie to move to the top of the DIV (FF3).</p> <p>Is there an issue with Flash and negative margins?</p> http://stackoverflow.com/questions/1869623/prototype-framework-breaking-other-scripts/1869703#1869703 0 Answer by Diodeus for Prototype Framework Breaking Other Scripts Diodeus 2009-12-08T20:43:23Z 2009-12-09T10:57:37Z <p>Make sure the 'iphoneimg' element exists on your page. </p> <p>If firebug is not showing anything, add some <code>alert()</code> breakpoints to see where it silently fails.</p> http://stackoverflow.com/questions/1869635/javascript-postback-on-condition/1869677#1869677 1 Answer by Diodeus for JavaScript Postback on condition Diodeus 2009-12-08T20:38:31Z 2009-12-08T20:38:31Z <p>You need to look at the length of the VALUE, not the element itself:</p> <pre><code>var conlength = document.getElementById('&lt;%=txtLength.ClientID %&gt;').value; </code></pre> http://stackoverflow.com/questions/1860673/how-to-refresh-iframe-parent-page-after-a-submit-in-the-iframe/1860724#1860724 0 Answer by Diodeus for How to refresh iframe parent page after a submit in the iframe? Diodeus 2009-12-07T15:32:31Z 2009-12-07T15:32:31Z <p>Submitting a form is the FINAL action on the document in the Iframe. Once you submit a form, that page has been "submitted" and is no longer active. If you refresh the parent first, you lose the Iframe. The moment you submit in the Iframe, you can no longer talk to the parent.</p> <p>You can do one of a few things here:</p> <ul> <li>Target the PARENT when you submit the form, then the parent will have whatever you want in a NEW iframe on that page.</li> <li>Have the resulting page in the iframe reload the parent using JavaScript on the result page.</li> </ul> http://stackoverflow.com/questions/1847893/js-events-hooking-on-value-change-event-on-text-inputs/1847904#1847904 -2 Answer by Diodeus for JS Events: hooking on value change event on text inputs Diodeus 2009-12-04T16:00:54Z 2009-12-04T16:00:54Z <p>You'll need to listen to keyboard events when the element you're watching has focus.</p> http://stackoverflow.com/questions/1810330/how-can-i-get-around-the-same-origin-policy/1810360#1810360 3 Answer by Diodeus for How can i get around the same origin policy? Diodeus 2009-11-27T19:36:23Z 2009-11-27T19:36:23Z <p>Set up proxy on your own server. Have your server call theirs and return the result.</p> http://stackoverflow.com/questions/1800100/how-to-combine-first-child-and-hover 0 How to combine :first-child and :hover? Diodeus 2009-11-25T21:31:32Z 2009-11-25T21:56:01Z <p>I have an unordered list I'm using for a menu. Each item has a background image and a :hover image. The background image on the first element is different that the rest, so I use the following to style it, which works fine:</p> <pre><code>#prodNavBar ul:last-child li:first-child {...} </code></pre> <p>Since I want a roll-over image on this element as well, I've tried adding <code>:hover</code>, like so:</p> <pre><code>#prodNavBar ul:last-child li:first-child:hover {...} </code></pre> <p>...but this doesn't work. What's the syntax to combine <code>:first-child</code> and <code>:hover</code>?</p> http://stackoverflow.com/questions/218399/ajax-get-requests-use-parameters-or-put-data-in-url 7 Ajax GET requests: use parameters or put data in URL? Diodeus 2008-10-20T13:22:42Z 2009-11-20T11:44:52Z <p>What's the advantage of passing data as parameters vs part of the URL in an Ajax GET request?</p> <p>Using parameters:</p> <pre><code>var ajax = new Ajax.Request('server.php',{ parameters: 'store=11200&amp;product=Meat', onSuccess: function(myData){whatever} }); </code></pre> <p>Using URL:</p> <pre><code>var ajax = new Ajax.Request('server.php?store=11200&amp;product=Meat',{ onSuccess: function(myData){whatever} }); </code></pre> http://stackoverflow.com/questions/1763203/turning-a-div-into-a-click-and-drag-viewport/1763612#1763612 0 Answer by Diodeus for Turning a DIV into a click-and-drag viewport Diodeus 2009-11-19T14:19:33Z 2009-11-19T14:29:14Z <p>I make one for a touch-screen kiosk. It involves moving a large map based on someone dragging the viewable area on a mini-map, with various zoom levels.</p> <p>Take a look:</p> <p><a href="http://www.mintohomes.com/morgansgrantkiosk/SitePlan/Default.asp" rel="nofollow">http://www.mintohomes.com/morgansgrantkiosk/SitePlan/Default.asp</a></p> <p>The JavaScript source is in the page.</p> http://stackoverflow.com/questions/1758373/javascript-firefox-detect-if-window-open-opens-in-a-tab/1758690#1758690 0 Answer by Diodeus for Javascript & Firefox - Detect if window.open opens in a tab? Diodeus 2009-11-18T20:04:26Z 2009-11-18T20:04:26Z <p>If you do not specify window dimensions, you get a new tab.</p> http://stackoverflow.com/questions/1715859/i-want-to-align-div-b-with-div-a-horizontally-is-there-a-simple-way-to-do-it/1715925#1715925 0 Answer by Diodeus for I want to align <div> b with <div> a horizontally, is there a simple way to do it? Diodeus 2009-11-11T15:27:15Z 2009-11-11T15:27:15Z <p>These are not demonstrating "vertical alignment", they are <a href="http://theopensourcery.com/cssbasics6b.htm" rel="nofollow">block elements vs. inline elements</a>.</p> <p>The simple answer: use <strong>SPAN</strong>, not <strong>DIV</strong></p> http://stackoverflow.com/questions/1715707/how-can-i-change-markers-images-in-this-javascript/1715903#1715903 1 Answer by Diodeus for How can i change Markers images in This javascript Diodeus 2009-11-11T15:24:32Z 2009-11-11T15:24:32Z <p>You can specify your marker parameters like so:</p> <pre><code>var num = 1 //etc.. var icon = new GIcon(); icon.image = "/mapIcons/icon"+num+".png"; icon.iconSize = new GSize(20,32); icon.shadowSize = new GSize(20, 34); icon.iconAnchor = new GPoint(11, 15); icon.infoWindowAnchor = new GPoint(11, 15); icon.shadow = ""; </code></pre> http://stackoverflow.com/questions/1711125/how-many-of-you-are-moving-to-html-5/1711134#1711134 20 Answer by Diodeus for How many of you are moving to HTML 5? Diodeus 2009-11-10T20:58:54Z 2009-11-10T20:58:54Z <p>It's 2009 and we are still stuck having to support IE6, so, um, maybe by 2020. </p> http://stackoverflow.com/questions/1711109/jquery-and-the-style-properties/1711122#1711122 2 Answer by Diodeus for jquery and the style properties Diodeus 2009-11-10T20:55:22Z 2009-11-10T20:55:22Z <p>It's not jQuery, it's the way JavaScript handles it.</p> <p>Here's a chart:</p> <p><a href="http://codepunk.hardwar.org.uk/css2js.htm" rel="nofollow">http://codepunk.hardwar.org.uk/css2js.htm</a></p> http://stackoverflow.com/questions/1710994/firefox-handling-of-disabled-fields/1711019#1711019 0 Answer by Diodeus for FireFox handling of disabled fields Diodeus 2009-11-10T20:37:38Z 2009-11-10T20:37:38Z <p>Works for me:</p> <pre><code>&lt;select id="a" disabled="true"&gt; &lt;option&gt;1&lt;/option&gt; &lt;option&gt;2&lt;/option&gt; &lt;option&gt;3&lt;/option&gt; &lt;option&gt;4&lt;/option&gt; &lt;/select&gt; &lt;script type='text/javascript'&gt; document.getElementById('a').disabled=false &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/1710661/javascript-firebug-how-do-i-have-multiple-views-or-what-is-the-right-of-way-of/1710753#1710753 0 Answer by Diodeus for Javascript, Firebug: How do I have multiple views or what is the right of way of doing development? Diodeus 2009-11-10T19:56:29Z 2009-11-10T20:10:37Z <ul> <li>Write your HTML in an editor/IDE</li> <li>Save your changes</li> <li>Preview it in your browser</li> <li>Debug using Firebug</li> <li>Make your code edits in your SOURCE CODE</li> <li>Repeat</li> </ul> <p>Firebug is for debugging and allows you to do some "what if" fiddling while the page is live. This is not a replacement for an IDE.</p> http://stackoverflow.com/questions/1688909/img-positioning-behavior/1689142#1689142 0 Answer by Diodeus for <img> positioning behavior Diodeus 2009-11-06T17:36:59Z 2009-11-06T17:36:59Z <p>If you want more control over your image positioning, wrap your image in a DIV and control the positioning of the DIV. You can float the div if you want to intermingle it with your text.</p> http://stackoverflow.com/questions/1669265/possible-to-target-iframe-in-another-html-file/1669387#1669387 1 Answer by Diodeus for possible to target iframe in another html file? Diodeus 2009-11-03T18:48:38Z 2009-11-03T18:48:38Z <p>More or less like this:</p> <pre><code>&lt;form method="post" action="Otherfile.php" name="myname" target="OtherFrame"&gt; </code></pre> http://stackoverflow.com/questions/1663919/how-to-make-an-empty-anchor-tag-clickable-in-ie7/1663951#1663951 0 Answer by Diodeus for How to make an empty anchor tag clickable in IE7? Diodeus 2009-11-02T21:51:47Z 2009-11-02T21:51:47Z <p>Make a DIV clickable instead. If it's calling JavaScript, you don't need an anchor tag at all.</p> <p>You can absolutely position if if needed.</p> <pre><code>&lt;div onclick="alert('moo')" style="height;100px;width:100px;cursor:pointer"&gt;&lt;/div&gt; </code></pre> http://stackoverflow.com/questions/1650389/prototype-js-highlight-words-dom-traversing-correctly-and-efficiently/1650485#1650485 0 Answer by Diodeus for prototype.js highlight words. DOM traversing correctly and efficiently. Diodeus 2009-10-30T15:27:10Z 2009-10-30T15:27:10Z <p>Grab $(document.body) and do a search/replace and wrap a span around the term, then swap the entire $(document.body) in one go. Treat it as a big string, forget about the DOM. This way you only have to update the DOM once. It should be very quick.</p> http://stackoverflow.com/questions/1921345/caching-ajax-query-results-with-prototype/1922123#1922123 Comment by Diodeus on Caching AJAX query results with prototype Diodeus 2009-12-18T14:24:50Z 2009-12-18T14:24:50Z I have added an example to my response. http://stackoverflow.com/questions/1875009/java-string-in-javascript-function Comment by Diodeus on Java String in Javascript function Diodeus 2009-12-09T16:32:24Z 2009-12-09T16:32:24Z Is the Java running on the server or the client? http://stackoverflow.com/questions/1874380/is-it-possible-to-postpone-execution-of-some-javascript-function-until-browser-ev/1874408#1874408 Comment by Diodeus on Is it possible to postpone execution of some javascript function until browser event is fully processed? Diodeus 2009-12-09T16:03:57Z 2009-12-09T16:03:57Z But that's what this examples <i>does</i>. http://stackoverflow.com/questions/1874380/is-it-possible-to-postpone-execution-of-some-javascript-function-until-browser-ev/1874421#1874421 Comment by Diodeus on Is it possible to postpone execution of some javascript function until browser event is fully processed? Diodeus 2009-12-09T16:02:06Z 2009-12-09T16:02:06Z He's talking about the event being fully processed, not DOM READY. http://stackoverflow.com/questions/1869623/prototype-framework-breaking-other-scripts Comment by Diodeus on Prototype Framework Breaking Other Scripts Diodeus 2009-12-08T20:44:54Z 2009-12-08T20:44:54Z Prototype doesn't 'tend' to conflict with other scripts any more than any other script would. http://stackoverflow.com/questions/1800100/how-to-combine-first-child-and-hover Comment by Diodeus on How to combine :first-child and :hover? Diodeus 2009-11-25T22:12:43Z 2009-11-25T22:12:43Z Yeah, since I have to put a class on the first element to get it to work in IE, I may as well just use the class name and forget this first-child business all together. http://stackoverflow.com/questions/1715707/how-can-i-change-markers-images-in-this-javascript Comment by Diodeus on How can i change Markers images in This javascript Diodeus 2009-11-11T15:01:13Z 2009-11-11T15:01:13Z Please edit your question and put your code in a code block. http://stackoverflow.com/questions/1714338/how-can-i-check-to-see-if-a-forward-history-exists-in-javascript-disabling-back Comment by Diodeus on How can I check to see if a forward history exists in Javascript? (Disabling back button) Diodeus 2009-11-11T14:48:07Z 2009-11-11T14:48:07Z Send your emergency taskmasters to this page. Maybe they'll see the light. http://stackoverflow.com/questions/1710661/javascript-firebug-how-do-i-have-multiple-views-or-what-is-the-right-of-way-of/1710753#1710753 Comment by Diodeus on Javascript, Firebug: How do I have multiple views or what is the right of way of doing development? Diodeus 2009-11-10T20:12:38Z 2009-11-10T20:12:38Z Yeah, I don't think FireBug us the answer for what you want. I guess you could always save the page after editing, but that just results in static HTML. http://stackoverflow.com/questions/1689463/javascript-clear/1689520#1689520 Comment by Diodeus on Javascript clear Diodeus 2009-11-06T18:59:53Z 2009-11-06T18:59:53Z This correct. No loops required! http://stackoverflow.com/questions/1631624/find-path-of-file-to-be-uploaded/1631657#1631657 Comment by Diodeus on Find Path of File to be Uploaded Diodeus 2009-10-27T15:36:55Z 2009-10-27T15:36:55Z That does not change the facts. http://stackoverflow.com/questions/1626111/javascript-simple-grid Comment by Diodeus on JavaScript simple grid? Diodeus 2009-10-26T17:32:20Z 2009-10-26T17:32:20Z This is not a question. This is &quot;can you do this whole thing for me&quot;. http://stackoverflow.com/questions/44105/is-performant-a-valid-word-whats-the-alternative/95691#95691 Comment by Diodeus on Is "performant" a valid word? What's the alternative? Diodeus 2009-10-23T14:11:36Z 2009-10-23T14:11:36Z Also, you see the same problem with people using &quot;utilize&quot; when &quot;use&quot; is the correct term. http://stackoverflow.com/questions/1611566/dynmically-placing-the-input-types-insidetable-a-td-tag-innerhtml-tag-is-no/1611696#1611696 Comment by Diodeus on Dynmically placing the input types inside(table) a <td> tag - innerHTML tag is not working in internet-explorer . Diodeus 2009-10-23T14:04:13Z 2009-10-23T14:04:13Z Good call. I suggest putting a DIV inside the TD and working with the DIV instead. http://stackoverflow.com/questions/1613413/which-of-these-settimeout-format-is-better/1613453#1613453 Comment by Diodeus on Which of these setTimeout format is better? Diodeus 2009-10-23T13:56:35Z 2009-10-23T13:56:35Z PERFORMANT is not a word.