User Diodeus - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T05:43:53Zhttp://stackoverflow.com/feeds/user/12579http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1930002/how-lightboxes-for-pics-works-they-use-iframes-how-they-download-pics/1930027#19300271Answer by Diodeus for how lightboxes for pics works? they use iframes? how they download pics?Diodeus2009-12-18T18:51:00Z2009-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#19292910Answer by Diodeus for What is the best way to get clean semantic XHTML from MS word documents?Diodeus2009-12-18T16:29:50Z2009-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><strong>hello</strong><strong>th<strong>er</strong>e</strong><i></i>
</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><p></p></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#19285200Answer by Diodeus for Any library to show records in a grid.Diodeus2009-12-18T14:29:55Z2009-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#19221230Answer by Diodeus for Caching AJAX query results with prototypeDiodeus2009-12-17T14:23:24Z2009-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#19235220Answer by Diodeus for Best way to add metadata to HTML elementsDiodeus2009-12-17T18:01:14Z2009-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#19175520Answer by Diodeus for How to avoid the Unresponsive Script popup in Firefox with long running Javascript?Diodeus2009-12-16T20:43:01Z2009-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#19166411Answer by Diodeus for Maximum number of entries in a ListBoxDiodeus2009-12-16T18:24:19Z2009-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#19107922Answer by Diodeus for Offset height using PrototypeDiodeus2009-12-15T22:13:15Z2009-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#19091620Answer by Diodeus for JavaScript returned by AJAX is not working. How to work with JavaScript?Diodeus2009-12-15T17:48:47Z2009-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#19029831Answer by Diodeus for Automatic page reload when accessed from pressing the back buttonDiodeus2009-12-14T19:36:05Z2009-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-html1Flash movie not respecting negative margin in container HTMLDiodeus2009-12-11T20:19:51Z2009-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#18697030Answer by Diodeus for Prototype Framework Breaking Other ScriptsDiodeus2009-12-08T20:43:23Z2009-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#18696771Answer by Diodeus for JavaScript Postback on conditionDiodeus2009-12-08T20:38:31Z2009-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('<%=txtLength.ClientID %>').value;
</code></pre>
http://stackoverflow.com/questions/1860673/how-to-refresh-iframe-parent-page-after-a-submit-in-the-iframe/1860724#18607240Answer by Diodeus for How to refresh iframe parent page after a submit in the iframe?Diodeus2009-12-07T15:32:31Z2009-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-2Answer by Diodeus for JS Events: hooking on value change event on text inputsDiodeus2009-12-04T16:00:54Z2009-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#18103603Answer by Diodeus for How can i get around the same origin policy?Diodeus2009-11-27T19:36:23Z2009-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-hover0How to combine :first-child and :hover?Diodeus2009-11-25T21:31:32Z2009-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-url7Ajax GET requests: use parameters or put data in URL?Diodeus2008-10-20T13:22:42Z2009-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&product=Meat',
onSuccess: function(myData){whatever}
});
</code></pre>
<p>Using URL:</p>
<pre><code>var ajax = new Ajax.Request('server.php?store=11200&product=Meat',{
onSuccess: function(myData){whatever}
});
</code></pre>
http://stackoverflow.com/questions/1763203/turning-a-div-into-a-click-and-drag-viewport/1763612#17636120Answer by Diodeus for Turning a DIV into a click-and-drag viewportDiodeus2009-11-19T14:19:33Z2009-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#17586900Answer by Diodeus for Javascript & Firefox - Detect if window.open opens in a tab?Diodeus2009-11-18T20:04:26Z2009-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#17159250Answer by Diodeus for I want to align <div> b with <div> a horizontally, is there a simple way to do it?Diodeus2009-11-11T15:27:15Z2009-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#17159031Answer by Diodeus for How can i change Markers images in This javascriptDiodeus2009-11-11T15:24:32Z2009-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#171113420Answer by Diodeus for How many of you are moving to HTML 5?Diodeus2009-11-10T20:58:54Z2009-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#17111222Answer by Diodeus for jquery and the style propertiesDiodeus2009-11-10T20:55:22Z2009-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#17110190Answer by Diodeus for FireFox handling of disabled fieldsDiodeus2009-11-10T20:37:38Z2009-11-10T20:37:38Z<p>Works for me:</p>
<pre><code><select id="a" disabled="true">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
</select>
<script type='text/javascript'>
document.getElementById('a').disabled=false
</script>
</code></pre>
http://stackoverflow.com/questions/1710661/javascript-firebug-how-do-i-have-multiple-views-or-what-is-the-right-of-way-of/1710753#17107530Answer by Diodeus for Javascript, Firebug: How do I have multiple views or what is the right of way of doing development?Diodeus2009-11-10T19:56:29Z2009-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#16891420Answer by Diodeus for <img> positioning behaviorDiodeus2009-11-06T17:36:59Z2009-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#16693871Answer by Diodeus for possible to target iframe in another html file?Diodeus2009-11-03T18:48:38Z2009-11-03T18:48:38Z<p>More or less like this:</p>
<pre><code><form method="post" action="Otherfile.php" name="myname" target="OtherFrame">
</code></pre>
http://stackoverflow.com/questions/1663919/how-to-make-an-empty-anchor-tag-clickable-in-ie7/1663951#16639510Answer by Diodeus for How to make an empty anchor tag clickable in IE7?Diodeus2009-11-02T21:51:47Z2009-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><div onclick="alert('moo')" style="height;100px;width:100px;cursor:pointer"></div>
</code></pre>
http://stackoverflow.com/questions/1650389/prototype-js-highlight-words-dom-traversing-correctly-and-efficiently/1650485#16504850Answer by Diodeus for prototype.js highlight words. DOM traversing correctly and efficiently.Diodeus2009-10-30T15:27:10Z2009-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#1922123Comment by Diodeus on Caching AJAX query results with prototypeDiodeus2009-12-18T14:24:50Z2009-12-18T14:24:50ZI have added an example to my response.http://stackoverflow.com/questions/1875009/java-string-in-javascript-functionComment by Diodeus on Java String in Javascript functionDiodeus2009-12-09T16:32:24Z2009-12-09T16:32:24ZIs 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#1874408Comment by Diodeus on Is it possible to postpone execution of some javascript function until browser event is fully processed?Diodeus2009-12-09T16:03:57Z2009-12-09T16:03:57ZBut 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#1874421Comment by Diodeus on Is it possible to postpone execution of some javascript function until browser event is fully processed?Diodeus2009-12-09T16:02:06Z2009-12-09T16:02:06ZHe's talking about the event being fully processed, not DOM READY.http://stackoverflow.com/questions/1869623/prototype-framework-breaking-other-scriptsComment by Diodeus on Prototype Framework Breaking Other ScriptsDiodeus2009-12-08T20:44:54Z2009-12-08T20:44:54ZPrototype 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-hoverComment by Diodeus on How to combine :first-child and :hover?Diodeus2009-11-25T22:12:43Z2009-11-25T22:12:43ZYeah, 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-javascriptComment by Diodeus on How can i change Markers images in This javascriptDiodeus2009-11-11T15:01:13Z2009-11-11T15:01:13ZPlease 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-backComment by Diodeus on How can I check to see if a forward history exists in Javascript? (Disabling back button)Diodeus2009-11-11T14:48:07Z2009-11-11T14:48:07ZSend 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#1710753Comment by Diodeus on Javascript, Firebug: How do I have multiple views or what is the right of way of doing development?Diodeus2009-11-10T20:12:38Z2009-11-10T20:12:38ZYeah, 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#1689520Comment by Diodeus on Javascript clearDiodeus2009-11-06T18:59:53Z2009-11-06T18:59:53ZThis correct. No loops required!http://stackoverflow.com/questions/1631624/find-path-of-file-to-be-uploaded/1631657#1631657Comment by Diodeus on Find Path of File to be UploadedDiodeus2009-10-27T15:36:55Z2009-10-27T15:36:55ZThat does not change the facts.http://stackoverflow.com/questions/1626111/javascript-simple-gridComment by Diodeus on JavaScript simple grid?Diodeus2009-10-26T17:32:20Z2009-10-26T17:32:20ZThis is not a question. This is "can you do this whole thing for me".http://stackoverflow.com/questions/44105/is-performant-a-valid-word-whats-the-alternative/95691#95691Comment by Diodeus on Is "performant" a valid word? What's the alternative?Diodeus2009-10-23T14:11:36Z2009-10-23T14:11:36ZAlso, you see the same problem with people using "utilize" when "use" is the correct term.http://stackoverflow.com/questions/1611566/dynmically-placing-the-input-types-insidetable-a-td-tag-innerhtml-tag-is-no/1611696#1611696Comment by Diodeus on Dynmically placing the input types inside(table) a <td> tag - innerHTML tag is not working in internet-explorer .Diodeus2009-10-23T14:04:13Z2009-10-23T14:04:13ZGood 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#1613453Comment by Diodeus on Which of these setTimeout format is better?Diodeus2009-10-23T13:56:35Z2009-10-23T13:56:35ZPERFORMANT is not a word.