User Owen - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T20:38:26Z http://stackoverflow.com/feeds/user/4853 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/286004/hidden-features-of-modrewrite 20 Hidden features of mod_rewrite Owen 2008-11-13T01:15:19Z 2009-10-09T16:56:27Z <p>There seem to be a decent number of <code>mod_rewrite</code> threads floating around lately with a bit of confusion over how certain aspects of it work. As a result I've compiled a few notes on common functionality, and perhaps a few annoying nuances.</p> <p>What other features / common issues have you run across using <code>mod_rewrite</code>?</p> http://stackoverflow.com/questions/276660/how-can-i-override-the-onbeforeunload-dialog-and-replace-it-with-my-own/276739#276739 19 Answer by Owen for How can I override the OnBeforeUnload dialog and replace it with my own? Owen 2008-11-10T00:21:25Z 2009-08-13T12:51:53Z <p>well it looks like you can't modify the default dialogue for <code>onbeforeunload</code>, so your best bet may be to work with it...</p> <pre><code>window.onbeforeunload = function() { return 'You have unsaved changes!'; } </code></pre> <p><a href="http://msdn.microsoft.com/en-us/library/ms536907%28VS.85%29.aspx" rel="nofollow">here's a reference</a> to this from microsoft:</p> <blockquote> <p>When a string is assigned to the returnValue property of window.event, a dialog box appears that gives users the option to stay on the current page and retain the string that was assigned to it. The default statement that appears in the dialog box, "Are you sure you want to navigate away from this page? ... Press OK to continue, or Cancel to stay on the current page.", cannot be removed or altered.</p> </blockquote> <p>the problem seems to be:</p> <ol> <li>when <code>onbeforeunload</code> is called, it will take the return value of the handler as <code>window.event.returnValue</code>.</li> <li>it will then parse the return value as a string (unless it is null)</li> <li>since <code>false</code> is parsed as a string, the dialogue box will fire, which will then pass an appropriate <code>true</code>/<code>false</code></li> </ol> <p>the result is, there doesn't seem to be a way of assigning <code>false</code> to <code>onbeforeunload</code>, to prevent it from the default dialogue.</p> <p>additional notes on jQuery:</p> <ul> <li>setting the event in jQuery <strong>may</strong> be problematic, as that allows other <code>onbeforeunload</code> events to occur as well. if you wish only for your unload event to occur i'd stick to plain ol javascript for it.</li> <li><p>jQuery doesn't have a short cut for <code>onbeforeunload</code> so you'd have to use the generic <code>bind</code> syntax.</p> <pre><code>$(window).bind('beforeunload', function() {} ); </code></pre></li> </ul> http://stackoverflow.com/questions/192628/google-page-rank-new-domain-link-structure-migration 4 Google Page Rank - New Domain / Link Structure Migration Owen 2008-10-10T18:50:22Z 2009-05-01T19:24:05Z <p>i've been tasked with re-organizing a pure HTML site into a CMS. if all goes well, the new site will eventually become the main URL, and the old domain will be phased out. the old domain has a decent enough page rank, and the company wishes to mitigate any loss of page rank for that. in looking over the options available, i've discovered a few things:</p> <ul> <li>it's better to use a 301 redirect when you're ready to make the switch (<a href="http://www.seroundtable.com/archives/007233.html" rel="nofollow">source</a>).</li> <li>the current site does not have a sitemap, so adding one and submitting it may help their future page rank.</li> <li>i'll need to suggest to them that they contact people currently linking to them to update their links.</li> <li>the process for regaining an old page rank takes awhile, so plan on rebuilding links while we see if the new site is flexible enough to warrant switching over completely.</li> </ul> <p><strong>my question is</strong>: as a result of a move to a CMS driven site, the links to various pages will change to accommodate the new structure. will this be an issue for trying to maintain (or improve) the current page rank? what sort of methods are available to mitigate the issue of changing individual page URL's? <em>is there a preferable method beyond mapping individual pages to their new locations with 301 redirects? (the site has literally hundreds of pages, ugh...)</em></p> <pre><code>ex. http://domain.com/Messy_HTML_page_with_little_categorization.html -&gt; http://newdomain.com/nice/structured/pages.php </code></pre> <p>i realize this isn't strictly a programming question, however i felt the information could be useful to developers who are tasked with handling this sort of thing in addition to development of the site.</p> <p><strong>edit</strong>: additions in italics</p> http://stackoverflow.com/questions/228165/how-can-i-extract-the-jpg-png-components-of-an-hpi-file 2 How can I extract the .jpg/.png components of an .hpi file? Owen 2008-10-23T01:17:41Z 2009-03-18T09:48:28Z <p>I stumbled across my rather ancient photo objects disks, and sadly found out the company (hemera) doesn't provide support for it anymore. this has left me with a whole pile of .hpi files. Luckily, I found <a href="http://www.halley.cc/ed/linux/interop/hemera.html" rel="nofollow">this information</a> on extracting the jpg and png components of the file.</p> <p>Unfortunately, I haven't been able to get it to work. Can anyone figure out what's wrong with this code? I'd be happy with a PHP or Python solution if Perl isn't your thing. :)</p> <pre><code>open(I, "$name") || die; binmode(I); $_ = &lt;I&gt;; close(I); my ($j, $p) = m|^.{32}(.*)(\211PNG.*)$|s; open(J, "&gt;$name.jpg") &amp;&amp; do { binmode(J); print J $j; close J; }; open(P, "&gt;$name.png") &amp;&amp; do { binmode(P); print P $p; close P; }; </code></pre> <p>The hexdump of the current test file I snagged off a CD is here, if it helps at all:</p> <pre><code>0000000 89 48 50 49 0d 0a 1a 0a 64 00 00 00 20 00 00 00 0000010 45 89 00 00 65 89 00 00 0a 21 00 00 00 d0 d0 00 </code></pre> http://stackoverflow.com/questions/181388/re-factoring-from-active-record-to-data-mapper 1 Re-factoring from Active Record to Data Mapper Owen 2008-10-08T04:46:47Z 2009-01-21T21:35:37Z <p>have you re-factored from an <a href="http://martinfowler.com/eaaCatalog/activeRecord.html" rel="nofollow">Active Record</a> to a <a href="http://martinfowler.com/eaaCatalog/dataMapper.html" rel="nofollow">Data Mapper</a> pattern? what conditions prompted the switch? i'm primarily interested in web based applications, but would like to know the challenges that accompany such a move in any environment.</p> http://stackoverflow.com/questions/342532/how-do-i-slidedown-whilst-maintaining-transparency-in-jquery/342574#342574 2 Answer by Owen for How do I slideDown whilst maintaining transparency in jQuery? Owen 2008-12-05T00:55:14Z 2008-12-05T00:55:14Z <p>a few probable issues with your code: are you setting the content to hide as well in the beginning? are you calling <code>fadeIn</code> during the <code>slideDown</code> callback?</p> <p>here's some example HTML/code that will <code>fadeIn</code> after the <code>slideDown</code></p> <pre><code>$('div').hide(); // make sure you hide both container/content $('#container').slideDown('slow', function() { $('#content').fadeIn('slow'); // fade in of content happens after slidedown }); </code></pre> <p>html:</p> <pre><code>&lt;div id="container"&gt; &lt;div id="content"&gt;stuff&lt;/div&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/339169/is-ther-a-drupal-function-to-jump-out-of-the-page-rendering-process-and-return-a/339204#339204 4 Answer by Owen for is ther a drupal function to jump out of the page rendering process and return a page not found? Owen 2008-12-04T00:10:28Z 2008-12-04T00:10:28Z <p>you could use <a href="http://api.drupal.org/api/function/drupal_not_found/6" rel="nofollow"><code>drupal_not_found()</code></a> to bring up the "page not found" message without altering the URL.</p> http://stackoverflow.com/questions/338981/using-modrewrite-in-htaccess-in-both-website-root-and-a-subdirectory/339188#339188 2 Answer by Owen for Using mod_rewrite in .htaccess in both website root and a subdirectory Owen 2008-12-03T23:58:35Z 2008-12-03T23:58:35Z <p>i'm not sure of the specifics as to why the rules in <code>/.htaccess</code> aren't applying to <code>/foo/.htaccess</code>. typically, <code>.htaccess</code> files will inherit rules up the directory structure, which can lead to all sorts of odd things. for your specific solution though, you could just place all relevant rules in your parent <code>.htaccess</code> file as such:</p> <pre><code>RewriteEngine On RewriteCond %{HTTP_HOST} !^www\.example\.com [NC] RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L] RewriteRule ^foo/page1\.html$ /foo/page2.html [R=301] </code></pre> http://stackoverflow.com/questions/338340/suggest-a-good-php-wiki-engine/338432#338432 3 Answer by Owen for Suggest a good PHP wiki engine Owen 2008-12-03T19:29:39Z 2008-12-03T19:29:39Z <p>I've used <a href="http://www.dokuwiki.org/dokuwiki" rel="nofollow">DokuWiki</a> in the past and have been fairly happy with it. It's pretty small, the code isn't the cleanest, but it's not too tough to drop in your own authentication scheme (for example) to integrate with an existing user system.</p> <p>It is GPL2, which fits your requirement. It uses the file system as storage, so may not scale that well, but for basic wiki stuff with a decent feature set it might be what you're looking for.</p> http://stackoverflow.com/questions/335205/php-string0-vs-string0/335213#335213 12 Answer by Owen for PHP $string{0} vs. $string[0]; Owen 2008-12-02T19:54:12Z 2008-12-02T19:54:12Z <p>use <code>$string[0]</code>, the other method (braces) is being deprecated in PHP6 (<a href="http://php.net/string" rel="nofollow">src</a>)</p> <blockquote> <p>Note: Strings may also be accessed using braces, as in $str{42}, for the same purpose. However, this syntax is deprecated as of PHP 6. Use square brackets instead.</p> </blockquote> http://stackoverflow.com/questions/332709/what-is-the-best-way-to-get-config-variables-into-a-class-in-php-5/332724#332724 2 Answer by Owen for What is the best way to get config variables into a class in php 5? Owen 2008-12-02T00:59:02Z 2008-12-02T01:00:29Z <p>there are probably a few options to deal with this:</p> <ol> <li><p>just use setters, it's perfectly acceptable, but can get a bit "wordy" with a lot of config options.</p></li> <li><p>use a config object to pass in:</p> <pre><code>$config = (object) array( 'prop1' =&gt; 'somevalue', 'prop2' =&gt; 'somevalue2', 'prop3' =&gt; 'somevalue3', ); $db = new DB($config); </code></pre></li> <li><p>if you want to use constants, you could restrict them to the class to avoid global namespace pollution:</p> <pre><code>class DB { const USER = 'mysqluser'; } echo DB::USER; // for example </code></pre></li> </ol> http://stackoverflow.com/questions/330331/jquery-get-charset-of-reply-when-no-header-is-set/330398#330398 8 Answer by Owen for jQuery $.get() charset of reply when no header is set? Owen 2008-12-01T09:51:09Z 2008-12-01T21:40:28Z <p><strong>edit</strong>: ok i think this works (at least it worked in my test environment, see revisions for previous attempt)</p> <pre><code>$.ajaxSetup({ 'beforeSend' : function(xhr) { xhr.overrideMimeType('text/html; charset=UTF-8'); }, }); $('#stuff').load('/yourresource.file'); // your ajax load </code></pre> <p>what i had was the main file set in <code>UTF-8</code> and the data file set in <code>ISO-8859-1</code>. without the above code, i got a bunch of garbage for the test string <strong>åäöé</strong>, as expected. with the above code, it loaded <strong>åäöé</strong> properly encoded.</p> http://stackoverflow.com/questions/332104/div-background-doesnt-position-with-the-div/332197#332197 2 Answer by Owen for Div background doesn't position with the Div. Owen 2008-12-01T20:59:49Z 2008-12-01T20:59:49Z <p>your <code>background-attachment:fixed</code> will attach the background image relative to the browser window. if you want it to "follow" the <code>div</code> position, just remove the line:</p> <pre><code>#ranImg1{ left:10px; top:200px; background-image:url(http://localhost/MyAlbum//images/background/ranPaperclips.png); background-repeat:no-repeat; } </code></pre> <p>you could also set the <code>background-position</code> attribute to set the background relative to the containing div:</p> <pre><code>background-position: 0px 0px; </code></pre> <p>i'm not sure if that would help any beyond just removing <code>background-attachment</code> though (not enough coffee yet!)</p> http://stackoverflow.com/questions/329993/moz-css-properties-and-browser-support/330015#330015 8 Answer by Owen for -moz CSS properties and browser support Owen 2008-12-01T04:01:10Z 2008-12-01T04:01:10Z <p>CSS3 has <code>border-radius</code>. for now, mozilla and webkit based browsers have experimental support, <code>-moz-border-radius</code> and <code>-webkit-border-radius</code>. it's not bad to use them now, as long as you understand they are temporary measures until they are properly implemented. i would expect it's not too long before you see full support for <code>border-radius</code> in mozilla, firefox and IE. (well, hopefully IE)</p> http://stackoverflow.com/questions/327047/what-is-the-most-efficient-way-to-create-html-elements-using-jquery/327065#327065 6 Answer by Owen for What is the most efficient way to create HTML elements using jQuery? Owen 2008-11-29T02:32:18Z 2008-11-29T04:44:07Z <p>personally i'd suggest (for readability):</p> <pre><code>$('&lt;div&gt;'); </code></pre> <p>some numbers on the suggestions so far (safari 3.2.1 / mac os x):</p> <pre><code>var it = 50000; var start = new Date().getTime(); for (i = 0; i &lt; it; ++i) { // test creation of an element // see below statements } var end = new Date().getTime(); alert( end - start ); var e = $( document.createElement('div') ); // ~300ms var e = $('&lt;div&gt;'); // ~3100ms var e = $('&lt;div&gt;&lt;/div&gt;'); // ~3200ms var e = $('&lt;div/&gt;'); // ~3500ms </code></pre> http://stackoverflow.com/questions/326821/need-to-explain-why-checkboxes-look-funky-in-safari/326837#326837 3 Answer by Owen for need to explain why checkboxes look funky in Safari Owen 2008-11-28T22:46:08Z 2008-11-28T22:46:08Z <p>wow i didn't even really notice the box was slightly lower than the text until you mentioned it. you can work around that in CSS though:</p> <pre><code>label { vertical-align: bottom; } </code></pre> <p>aligns the text to the checkboxes for me (Safari 3.2.1)</p> http://stackoverflow.com/questions/326769/php-array-in-object-converting-to-string-so-far-as-i-can-tell/326805#326805 1 Answer by Owen for PHP array in object converting to string (so far as I can tell) Owen 2008-11-28T22:25:36Z 2008-11-28T22:31:34Z <p>so are you using the object after calling <code>updateMember()</code>? PHP5 objects are passed by reference by default, so if you're calling <code>json_encode()</code> on the <code>meta_data</code> property, it'll exhibit the behaviour you describe.</p> <p>you may want to post the <code>updateMember()</code> function to confirm, but it sounds like that's what's going on.</p> <p>ie:</p> <pre><code>class MemberInfo { function __construct() { $this-&gt;meta_data = array( 'email_recommendations' =&gt; true, 'email_updates' =&gt; false, ); } } function updateMember($meminfo) { $meminfo-&gt;meta_data = json_encode($meminfo-&gt;meta_data); // do stuff } $meminfo = new MemberInfo(); updateMember($meminfo); print_r($meminfo); // you'll see the json encoded value for "meta_data" </code></pre> http://stackoverflow.com/questions/326580/navigation-background-swap-not-having-every-li-on-mouseover/326644#326644 0 Answer by Owen for Navigation, background swap not having every <li> on mouseover Owen 2008-11-28T20:46:52Z 2008-11-28T20:46:52Z <p>i tried to approximate what i imagined your code would look like, and the test runs fine:</p> <p>css:</p> <pre><code>.left-corner-hover, .right-corner-hover, .content-hover { background-color: #CCC; } </code></pre> <p>jQuery:</p> <pre><code>$("#top ul li.corner").mouseover(function(){ $("span.left-corner", this).addClass("left-corner-hover"); $("span.right-corner", this).addClass("right-corner-hover"); $("span.content", this).addClass("content-hover"); }).mouseout(function(){ $("span.left-corner", this).removeClass("left-corner-hover"); $("span.right-corner", this).removeClass("right-corner-hover"); $("span.content", this).removeClass("content-hover"); }); </code></pre> <p>html:</p> <pre><code>&lt;div id="top"&gt; &lt;ul&gt; &lt;li class="corner"&gt; &lt;span class="left-corner"&gt;Left Corner&lt;/span&gt; &lt;span class="content"&gt;Content&lt;/span&gt; &lt;span class="right-corner"&gt;Right Corner&lt;/span&gt; &lt;/li&gt; &lt;/ul&gt; &lt;ul&gt; &lt;li class="corner"&gt; &lt;span class="left-corner"&gt;Left Corner&lt;/span&gt; &lt;span class="content"&gt;Content&lt;/span&gt; &lt;span class="right-corner"&gt;Right Corner&lt;/span&gt; &lt;/li&gt; &lt;/ul&gt; &lt;div&gt; </code></pre> http://stackoverflow.com/questions/326580/navigation-background-swap-not-having-every-li-on-mouseover/326602#326602 0 Answer by Owen for Navigation, background swap not having every <li> on mouseover Owen 2008-11-28T20:28:44Z 2008-11-28T20:28:44Z <p>are your <code>&lt;span&gt;</code> elements within your <code>&lt;li&gt;</code>? if so you could do something like:</p> <pre><code>$('#top ul li.corner').mouseover(function() { $('span.left-corner', this).addClass('left-corner-hover'); // etc... }).mouseout(function() { $('span.left-corner', this).removeClass('left-corner-hover'); // etc... }); </code></pre> <p>basically, this would assign/remove the classes to the specific <code>&lt;span&gt;</code> elements within the <code>&lt;li&gt;</code> called.</p> <p>depending on how much stuff is in there, you may get better results using <code>mouseenter</code> and <code>mouseleave</code>, to avoid triggering mouseover when you cross element boundaries:</p> <pre><code>$('#top ul li.corner').bind('mouseenter', function() { // etc... }).bind('mouseleave', function() { // etc... }); </code></pre> http://stackoverflow.com/questions/325392/again-a-jquery-doubt/325418#325418 2 Answer by Owen for Again a jquery doubt... Owen 2008-11-28T10:05:29Z 2008-11-28T10:05:29Z <p>you could use the <code>escape()</code> value to split a string. for ± i found two values (maybe there are more?).</p> <pre><code>var string = escape('test±test2±test3'); var split = string.split('%C2%B1'); alert(split); // test,test2,test3 // %B1%0A is the value i found for ± // %C2%B1 is the value escape() gives me when i just copy and paste that char :) </code></pre> http://stackoverflow.com/questions/325346/name-for-http-requestresponse/325348#325348 1 Answer by Owen for Name for HTTP Request+Response Owen 2008-11-28T09:23:25Z 2008-11-28T09:29:30Z <p>i'd suggest "<strong>transaction</strong>"</p> http://stackoverflow.com/questions/325087/convert-a-jquery-set-into-html/325152#325152 2 Answer by Owen for Convert a jQuery set into HTML Owen 2008-11-28T06:18:50Z 2008-11-28T06:18:50Z <p>i'd suggest creating a temporary container, then grabbing the <code>html()</code> of that new container:</p> <pre><code>var html = $('&lt;div&gt;').append( $('div').clone() ).html(); alert(html); // alerts: &lt;div class="abc"&gt; foo &lt;strong&gt;FOO&lt;/strong&gt; &lt;/div&gt;&lt;div class="def"&gt; bar &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/324665/which-is-faster-inarray-or-a-bunch-of-expressions-in-php/324669#324669 8 Answer by Owen for Which is faster: in_array() or a bunch of expressions in PHP? Owen 2008-11-27T21:21:51Z 2008-11-27T21:32:15Z <p>i'd strongly suggest just using <code>in_array()</code>, any speed difference would be negligible, but the readability of testing each variable separately is horrible.</p> <p>just for fun here's a test i ran:</p> <pre><code>$array = array('test1', 'test2', 'test3', 'test4'); $var = 'test'; $iterations = 1000000; $start = microtime(true); for($i = 0; $i &lt; $iterations; ++$i) { if ($var != 'test1' &amp;&amp; $var != 'test2' &amp;&amp; $var != 'test3' &amp;&amp; $var != 'test4') {} } $end = microtime(true); print "Time1: ". ($end - $start)."&lt;br /&gt;"; $start2 = microtime(true); for($i = 0; $i &lt; $iterations; ++$i) { if (!in_array($var, $array) ) {} } $end2 = microtime(true); print "Time2: ".($end2 - $start2)."&lt;br /&gt;"; // Time1: 1.12536692619 // Time2: 1.57462596893 </code></pre> <p>slightly trivial note to watch for, if <code>$var</code> is not set, method 1 takes much longer (depending on how many conditions you test)</p> http://stackoverflow.com/questions/322912/jquery-to-find-all-previous-elements-that-match-an-expression/322979#322979 1 Answer by Owen for jQuery to find all previous elements that match an expression Owen 2008-11-27T05:12:51Z 2008-11-27T16:40:54Z <p><strong>edit</strong>: this solution works for both your original problem, the problem you mention in your first comment, and the problem you detail in the comment after that.</p> <pre><code>$('.myLinks').click(function() { var findMe = ''; $(this).parents().each(function() { var a = $(this).find('.findme').is('.findme'); var b = $(this).find('.myLinks').is('.myLinks'); if (a &amp;&amp; b) { // look for first parent that // contains .findme and .myLinks $(this).find('*').each(function() { var name = $(this).attr('class'); if ( name == 'findme') { findMe = $(this); // set element to last matching // .findme } if ( name == 'myLinks') { return false; // exit from the mess once we find // .myLinks } }); return false; } }); alert(findMe.text() ); // alerts "find this one" }); </code></pre> <p>this works for your example in the OP as well as a modified example as explained in the comments:</p> <pre><code>&lt;table&gt; &lt;tr&gt; &lt;td class="findme"&gt;don't find this one&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td class="findme"&gt;find this one&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;a href="#" class="myLinks"&gt;find the previous .findme&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td class="findme"&gt;don't find this one&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; </code></pre> <p>as well as this test case which you added:</p> <pre><code>&lt;table&gt; &lt;tr&gt; &lt;td class="findme"&gt;don't find this one&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td class="findme"&gt;don't find this one&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td class="findme"&gt;find this one&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;a href="#" class="myLinks"&gt;find the previous .findme&lt;/a&gt; </code></pre> http://stackoverflow.com/questions/322929/word-wrap-in-css-js/322991#322991 7 Answer by Owen for word wrap in css / js Owen 2008-11-27T05:28:16Z 2008-11-27T09:56:04Z <p>i've typically handled this using a combination of <code>word-wrap</code> and the <code>&lt;wbr&gt;</code> idea. note there are a few <a href="http://www.quirksmode.org/oddsandends/wbr.html" rel="nofollow">variants</a>. as you can see, <code>&amp;#8203;</code> is probably your best bet for compatibility.</p> <p><code>word-wrap</code> browser support isn't <em>terrible</em>, all things considered, Safari, Internet Explorer, and Firefox 3.1 (Alpha Build) all support it (<a href="http://www.css3.info/preview/word-wrap/" rel="nofollow">src</a>), so we may not be all that far off.</p> <p>in regards to the server side breakage, i've used this method pretty succesfully (php):</p> <pre><code>function _wordwrap($text) { $split = explode(" ", $text); foreach($split as $key=&gt;$value) { if (strlen($value) &gt; 10) { $split[$key] = chunk_split($value, 5, "&amp;#8203;"); } } return implode(" ", $split); } </code></pre> <p>basically, for words over 10 characters, i split them at 5 characters each. this seems to work for all use cases i've been handed.</p> http://stackoverflow.com/questions/318630/get-real-image-width-and-height-with-javascript-in-safari-chrome/318694#318694 2 Answer by Owen for Get real image width and height with Javascript in Safari/Chrome? Owen 2008-11-25T20:16:29Z 2008-11-25T20:16:29Z <p>this works for me (safari 3.2), by firing from within the <code>window.onload</code> event:</p> <pre><code>$(window).load(function() { var pic = $('img'); pic.removeAttr("width"); pic.removeAttr("height"); alert( pic.width() ); alert( pic.height() ); }); </code></pre> http://stackoverflow.com/questions/308175/javascript-onmouseover-triggering-for-children/308209#308209 4 Answer by Owen for Javascript "onMouseOver" triggering for children? Owen 2008-11-21T08:45:29Z 2008-11-25T06:46:07Z <p><strong>edit</strong>: actually this is a much better solution (<a href="http://stackoverflow.com/questions/308411/#308720">credit</a>):</p> <pre><code>$('.info').bind('mouseenter', function() { $('div', this).show('normal'); }); $('.info').bind('mouseleave', function() { $('div', this).hide('normal'); }); // hide the tooltip to start off $('.info div').hide(); </code></pre> <p><strong>edit2</strong>: in response to the comments, i think i would suggest structuring your HTML differently then, or binding the event to the sibling element (the image) instead:</p> <pre><code>&lt;div class="info"&gt; &lt;img src="stuff.jpg" /&gt; &lt;/div&gt; &lt;div class="tooltip"&gt;&lt;/div&gt; </code></pre> <p>or binding on the image:</p> <pre><code>$('.info img').bind('mouseenter', function() { etc... }); $('.info img').bind('mouseleave', function() { etc... }); </code></pre> http://stackoverflow.com/questions/315752/fire-javascript-code-when-download-finishes/315836#315836 0 Answer by Owen for Fire javascript code when download finishes Owen 2008-11-24T23:14:55Z 2008-11-24T23:14:55Z <p>hmm, would it be possible to do this via ajax maybe? ie, user selects the format, query is sent via ajax, and the appropriate document is loaded into an iframe on search.asp for example. you could then pick up the succesful event in your ajax call and appropriately deal with the messages.</p> http://stackoverflow.com/questions/275351/javascript-reflection 2 Javascript Reflection Owen 2008-11-08T23:05:17Z 2008-11-24T21:54:06Z <p>Is there a way to get all methods (private, privileged, or public) of a javascript object from within? Here's the sample object:</p> <pre><code>var Test = function() { // private methods function testOne() {} function testTwo() {} function testThree() {} // public methods function getMethods() { for (i in this) { alert(i); // shows getMethods, but not private methods } } return { getMethods : getMethods } }(); // should return ['testOne', 'testTwo', 'testThree', 'getMethods'] Test.getMethods(); </code></pre> <p>The current issue is the code in <code>getMethods()</code>, the simplified example will return just the public methods, but not to private ones.</p> <p><strong>edit</strong>: my test code may (or may not) be overcomplicating what i'm hoping to get at. given the following:</p> <pre><code>function myFunction() { var test1 = 1; var test2 = 2; var test3 = 3; } </code></pre> <p>is there a way to find out what variables exist in <code>myFunction()</code> from within <code>myFunction()</code>. the pseudo-code would look like this:</p> <pre><code>function myFunction() { var test1 = 1; var test2 = 2; var test3 = 3; alert(current.properties); // would be nice to get ['test1', 'test2', 'test3'] } </code></pre> http://stackoverflow.com/questions/315177/any-way-to-shuffle-content-in-multiple-div-elements/315353#315353 2 Answer by Owen for Any way to shuffle content in multiple div elements Owen 2008-11-24T20:29:58Z 2008-11-24T20:29:58Z <p>are you ok with using a javascript library like <a href="http://jquery.com" rel="nofollow">jQuery</a>? here's a quick jQuery example to accomplish what you're after. the only modification to your HTML is the addition of a container element as suggested:</p> <pre><code>&lt;div id="shuffle"&gt; &lt;div id='d1'&gt;...&lt;/div&gt; &lt;div id='d2'&gt;...&lt;/div&gt; &lt;div id='d3'&gt;...&lt;/div&gt; &lt;/div&gt; </code></pre> <p>and javascript:</p> <pre><code>function shuffle(e) { // pass the divs to the function var replace = $('&lt;div&gt;'); var size = e.size(); while (size &gt;= 1) { var rand = Math.floor(Math.random() * size); var temp = e.get(rand); // grab a random div from our set replace.append(temp); // add the selected div to our new set e = e.not(temp); // remove our selected div from the main set size--; } $('#shuffle').html(replace.html() ); // update our container div with the // new, randomized divs } shuffle( $('#shuffle div') ); </code></pre> http://stackoverflow.com/questions/335205/php-string0-vs-string0/335213#335213 Comment by Owen on PHP $string{0} vs. $string[0]; Owen 2008-12-02T20:10:44Z 2008-12-02T20:10:44Z nope, i believe their goal is to just standardize accessing strings as array. http://stackoverflow.com/questions/332709/what-is-the-best-way-to-get-config-variables-into-a-class-in-php-5/332724#332724 Comment by Owen on What is the best way to get config variables into a class in php 5? Owen 2008-12-02T01:03:23Z 2008-12-02T01:03:23Z oops thanks for the syntax correction http://stackoverflow.com/questions/330331/jquery-get-charset-of-reply-when-no-header-is-set/330398#330398 Comment by Owen on jQuery $.get() charset of reply when no header is set? Owen 2008-12-01T22:43:48Z 2008-12-01T22:43:48Z great, good to hear :) http://stackoverflow.com/questions/330331/jquery-get-charset-of-reply-when-no-header-is-set/330398#330398 Comment by Owen on jQuery $.get() charset of reply when no header is set? Owen 2008-12-01T21:40:54Z 2008-12-01T21:40:54Z i think this new method should work http://stackoverflow.com/questions/327047/what-is-the-most-efficient-way-to-create-html-elements-using-jquery/327068#327068 Comment by Owen on What is the most efficient way to create HTML elements using jQuery? Owen 2008-11-29T04:44:53Z 2008-11-29T04:44:53Z a created div in jquery has to be added just like in javascript. $('&lt;div&gt;') by itself isn't attached to the DOM until you append() it to something. http://stackoverflow.com/questions/327047/what-is-the-most-efficient-way-to-create-html-elements-using-jquery/327065#327065 Comment by Owen on What is the most efficient way to create HTML elements using jQuery? Owen 2008-11-29T02:55:39Z 2008-11-29T02:55:39Z i assumed that was outdated, as the method i describe creates just as valid XHTML. ex: var e = $('&lt;div&gt;').append($('&lt;div&gt;')).html(); alert(e); is there some other metric that would render this method unfavourable to use? http://stackoverflow.com/questions/326580/navigation-background-swap-not-having-every-li-on-mouseover/326753#326753 Comment by Owen on Navigation, background swap not having every <li> on mouseover Owen 2008-11-28T21:57:49Z 2008-11-28T21:57:49Z adding &quot;this&quot; means, look for the elements within &quot;this&quot;. within a function, this refers to the parent element (in your case, the li that was mouseover'ed). find() basically returns the occurances of that selector, and is functionally equivalent to selecting it on it's own. http://stackoverflow.com/questions/326580/navigation-background-swap-not-having-every-li-on-mouseover/326669#326669 Comment by Owen on Navigation, background swap not having every <li> on mouseover Owen 2008-11-28T21:34:15Z 2008-11-28T21:34:15Z just to add, you can try my quick test sample, which is similar to your setup to &quot;prove&quot; that it works (and thus suggest a CSS conflict). nice site btw :) http://stackoverflow.com/questions/326580/navigation-background-swap-not-having-every-li-on-mouseover/326669#326669 Comment by Owen on Navigation, background swap not having every <li> on mouseover Owen 2008-11-28T21:32:46Z 2008-11-28T21:32:46Z right i think your problem is one of your CSS declarations. looks like it might be &quot;#top ul li.corner span.content&quot;, which sets a background-color to #2c2c2c after hover is declared. you might want to make sure &quot;#top ul li.corner span.content-hover&quot; is declared after that. http://stackoverflow.com/questions/326580/navigation-background-swap-not-having-every-li-on-mouseover/326609#326609 Comment by Owen on Navigation, background swap not having every <li> on mouseover Owen 2008-11-28T20:33:49Z 2008-11-28T20:33:49Z can you post the sample HTML of a li.corner block with spans? http://stackoverflow.com/questions/325337/best-way-to-parse-a-dynamic-text-list-in-php/325353#325353 Comment by Owen on Best way to parse a dynamic text list in PHP. Owen 2008-11-28T09:51:17Z 2008-11-28T09:51:17Z i can't compete with a picture, +1 for breaking the div too :) http://stackoverflow.com/questions/324665/which-is-faster-inarray-or-a-bunch-of-expressions-in-php/324669#324669 Comment by Owen on Which is faster: in_array() or a bunch of expressions in PHP? Owen 2008-11-27T23:22:43Z 2008-11-27T23:22:43Z 5.2.5 (mac os x), i'm getting ~1.25 : ~4 with the non-cheating version http://stackoverflow.com/questions/324665/which-is-faster-inarray-or-a-bunch-of-expressions-in-php/324671#324671 Comment by Owen on Which is faster: in_array() or a bunch of expressions in PHP? Owen 2008-11-27T23:21:55Z 2008-11-27T23:21:55Z bizarre :( should be someway to clear that http://stackoverflow.com/questions/322912/jquery-to-find-all-previous-elements-that-match-an-expression/322979#322979 Comment by Owen on jQuery to find all previous elements that match an expression Owen 2008-11-27T16:42:55Z 2008-11-27T16:42:55Z did you actually try it? it works on that test case too http://stackoverflow.com/questions/322912/jquery-to-find-all-previous-elements-that-match-an-expression/322979#322979 Comment by Owen on jQuery to find all previous elements that match an expression Owen 2008-11-27T05:32:40Z 2008-11-27T05:32:40Z or do you mean in cases where there are two .findme's before the link, it should match the last one (before the link)?