User yoavf - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T09:41:32Z http://stackoverflow.com/feeds/user/1011 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1872563/how-can-i-restrict-find-to-only-search-specific-sub-directories 0 How can I restrict find to only search specific sub-directories? yoavf 2009-12-09T09:14:11Z 2009-12-11T07:33:42Z <p>I am using <a href="http://en.wikipedia.org/wiki/Find" rel="nofollow">find</a> in a <a href="http://en.wikipedia.org/wiki/Bash" rel="nofollow">Bash</a> script. How can I modify that code to include a specific directory under 'bin' , ie './bin/php/' (while still ignoring all other sub-directories of 'bin')?</p> <p>Current code:</p> <pre><code>find . -name '*.php' \ -and ! -path './bin/*' \ </code></pre> http://stackoverflow.com/questions/1804810/wordpress-plugin-without-any-host/1804826#1804826 4 Answer by yoavf for Wordpress Plugin without any Host yoavf 2009-11-26T17:08:28Z 2009-11-26T17:08:28Z <p>I'm afraid you cannot upload plugins/themes to WordPress.com, even if you have a mapped domain. <a href="http://support.wordpress.com/plugins/" rel="nofollow">http://support.wordpress.com/plugins/</a></p> http://stackoverflow.com/questions/366595/jeditable-activate-edit-of-x-by-clicking-on-y 0 jEditable - Activate edit of X by clicking on Y yoavf 2008-12-14T14:41:06Z 2009-11-06T06:59:57Z <p>I'm trying to use <a href="http://www.appelsiini.net/projects/jeditable" rel="nofollow">jEditable</a> as an inline editing solution.</p> <p>The default behavior (click on the element to edit it) works quite well, but I would like to activate an element by clicking on another element.</p> <p>For example clicking on a.activateEdit will activate the next div.edit (obviously should be done using jQuery selectors).</p> <p>I've looked into jEditable docs for this, but couldn't find the right syntax</p> <p>FYI, the default jeditable syntax is something along the lines of:</p> <pre><code> $(document).ready(function() { $('.edit').editable('http://www.example.com/save.php'); }); </code></pre> <p><strong>*Edit: found <a href="http://groups.google.com/group/jquery-en/browse_thread/thread/33c18dcf32276c89/7711363c7496fcb3?hide_quotes=no" rel="nofollow">a better solution</a> *</strong></p> http://stackoverflow.com/questions/1678454/submenus-in-wordpress/1678467#1678467 1 Answer by yoavf for Submenus in Wordpress yoavf 2009-11-05T05:10:15Z 2009-11-05T05:10:15Z <p>You can set the <strong>depth</strong> argument in the <code>wp_list_pages</code> template tag<br> <a href="http://codex.wordpress.org/Template%5FTags/wp%5Flist%5Fpages" rel="nofollow">http://codex.wordpress.org/Template_Tags/wp_list_pages</a></p> http://stackoverflow.com/questions/487073/jquery-check-if-element-is-visible-after-scroling 3 jQuery - Check if element is visible after scroling yoavf 2009-01-28T10:00:55Z 2009-10-09T10:42:03Z <p>I'm loading elements via ajax. Some of them are only visible if you scroll down the page.<br /> Is there any way I can know if an element is now in the visible part of the page?</p> <p>EDIT: <a href="http://stackoverflow.com/questions/487073/jquery-check-if-element-is-visible-after-scroling/488073#488073">freakytard</a> solution was right, but I modified it a bit to also check if element is wholly visible </p> <pre><code>function isScrolledIntoView(elem) { var docViewTop = $(window).scrollTop(); var docViewBottom = docViewTop + $(window).height(); var elemTop = $(elem).offset().top; var elemBottom = elemTop + $(elem).height(); return ((elemBottom &gt;= docViewTop) &amp;&amp; (elemTop &lt;= docViewBottom) &amp;&amp; (elemBottom &lt;= docViewBottom) &amp;&amp; (elemTop &gt;= docViewTop) ); } </code></pre> http://stackoverflow.com/questions/1456640/change-query-argument-of-jquery-suggest-plugin 0 Change query argument of jQuery suggest plugin yoavf 2009-09-21T20:23:32Z 2009-09-21T20:26:16Z <p>This question is kind-of crappy because I try to get around some limitations:</p> <p>Current JS sends an ajax query with the following code</p> <pre><code>jQuery('#searchbox').suggest('/?live=1'); </code></pre> <p>What the server get is the following query string:</p> <pre><code>?live=1&amp;q=searchstring </code></pre> <p>Problem: The server expects the query string to be preceded with 's=' not 'q='</p> <p>I have to use the existing scripts so what I'm trying to so is find a way to change 'q=' to 's=' in javascript, without altering the exisiting suggest plugin or the php search script.</p> <p>Thanks.</p> http://stackoverflow.com/questions/238180/what-is-the-best-ui-youve-ever-used/685205#685205 1 Answer by yoavf for What is the best UI you've ever used? yoavf 2009-03-26T10:29:35Z 2009-03-26T10:29:35Z <p><a href="http://boxee.tv" rel="nofollow">Boxee</a> is a media center with a great UI. It's different that most media centers UIs I've experienced, but it remains intuitive and fun.</p> http://stackoverflow.com/questions/647853/how-do-you-choose-a-css-framework/647869#647869 0 Answer by yoavf for How do you choose a CSS framework? yoavf 2009-03-15T14:14:52Z 2009-03-15T14:14:52Z <p>Afaik, two of the most populars are <a href="http://www.blueprintcss.org/" rel="nofollow">blueprint</a> and <a href="http://960.gs/" rel="nofollow">960 grid system</a>.<br /> Both have their strengths. I like 960gs. </p> <p>There's another SO question debating the two <a href="http://stackoverflow.com/questions/589184/help-me-choose-a-css-framework-960-vs-blueprint-vs/">here</a></p> http://stackoverflow.com/questions/609254/j2me-app-vs-browser-on-a-handset/629330#629330 2 Answer by yoavf for J2ME app Vs browser on a handset yoavf 2009-03-10T08:34:14Z 2009-03-10T08:34:14Z <p>I thing a good rule of thumb should be: <strong>If what you're trying to achieve can be done with a mobile website - go for the website.</strong></p> <p>IMHO, apps should only be used to if they cant take advantage of the mobile hardware - like location, sound, video, 3d, pictures etc...</p> <p>Even if the dev costs for the app were insignificant (they usually aren't), you'd have to offer some really amazing capabilities to make the users go through the trouble of downloading it.</p> <p>(All of this is essentially true for J2ME/BREW. The iPhone is a little different as apps take the center stage)</p> http://stackoverflow.com/questions/629297/i-prepend-the-css-to-the-end-of-head-tag/629306#629306 2 Answer by yoavf for i prepend the css to the end of head tag yoavf 2009-03-10T08:19:38Z 2009-03-10T08:19:38Z <p>Can't you simply change the css attribute directly with jQuery?</p> <pre><code> $(document).ready(function(){ ("body").css({'background-color' : 'yellow'}); }); </code></pre> http://stackoverflow.com/questions/606672/javascript-lib-for-google-maps-or-live-maps/606716#606716 0 Answer by yoavf for JavaScript lib for google maps or live maps yoavf 2009-03-03T15:01:16Z 2009-03-03T15:01:16Z <p>Google's own <a href="http://code.google.com/apis/gdata/client-js.html" rel="nofollow">Javascript Client Library</a> can be used to interact with various google services, including maps.</p> http://stackoverflow.com/questions/596608/jquery-slide-right-to-left/596630#596630 1 Answer by yoavf for jQuery - slide right to left? yoavf 2009-02-27T20:48:33Z 2009-02-27T20:48:33Z <p>I guess you are looking for an horizontal accordion. Take a look at these for a start:</p> <ul> <li><a href="http://designreviver.com/tutorials/jquery-examples-horizontal-accordion/" rel="nofollow">Designreviver</a></li> <li><a href="http://www.portalzine.de/index?/Horizontal%5FAccordion--print" rel="nofollow">PortalZine</a></li> <li><a href="http://the-godking.com/?p=313" rel="nofollow">the Godking</a></li> </ul> http://stackoverflow.com/questions/590976/disable-other-text-boxes-on-input-using-jquery/590994#590994 0 Answer by yoavf for Disable other text boxes on input using jQuery yoavf 2009-02-26T15:22:01Z 2009-02-26T15:22:01Z <p>Use the <a href="http://docs.jquery.com/Selectors/not#selector" rel="nofollow">not</a> selector</p> http://stackoverflow.com/questions/590006/stable-php-cms-for-hacking-against/590867#590867 2 Answer by yoavf for Stable PHP CMS for hacking against yoavf 2009-02-26T14:54:59Z 2009-02-26T14:54:59Z <p>The last versions of WordPress (2.7 branch) have auto update for core and plugins making it really easy to upgrade when a fix is available. The api is also awesome - I've done quite a few WordPress based sites and rarely (if at all) needed to hack the core.</p> <p>As long as you customize through plugins or themes, and use auto update when a new version is available, you shouldn't have any problem at all. </p> http://stackoverflow.com/questions/543854/capture-multiple-onkeydown-and-wait-until-onkeyup-to-execute 1 capture multiple "onkeydown" and wait until "onkeyup" to execute yoavf 2009-02-12T22:49:53Z 2009-02-24T19:13:31Z <p>In my web app, I use the <strong>onkeydown</strong> event to capture key strokes.</p> <p>For example, I capture the 'j' key to animate a scroll down the page (and do some other stuff meanwhile).</p> <p>My problem is the user might keep the 'j' key down to scroll further down the page (this is equivalent to fast multiple key strokes). </p> <p>In my app, this result in a series of animations that doesn't look that good.</p> <p>How can I know when the key has been released, and know the amount of key stokes I should have captured? This way I could run one long animation instead of multiple short ones.</p> http://stackoverflow.com/questions/20040/what-are-the-most-important-things-to-learn-about-net-as-a-project-manager 2 What are the most important things to learn about .net as a Project Manager? yoavf 2008-08-21T14:14:53Z 2009-02-24T13:14:23Z <p>Thinking about getting into .net technology project management</p> <p>I've had plenty of experience with PHP projects: I'm aware of most of the existing frameworks and libraries, and I've written specs and case studies based on this knowledge.</p> <p>What should I know about .net? Which top resources would you recommend me to know so I can rapidly learn and later stay up to date on the technology?</p> <p><strong>Edit (8.24.08):</strong> The answers I got so far essentially discuss being a good PM. Thanks, but this is not what I meant. Any .net essentials would be appreciated.</p> http://stackoverflow.com/questions/556991/help-how-to-create-a-ui-tech-spec/557032#557032 4 Answer by yoavf for Help! How to create a UI Tech Spec yoavf 2009-02-17T14:23:35Z 2009-02-17T14:23:35Z <p>Not sure if this is any help, but I like how the mozilla project is detailing ui specs on their wiki.<br /> Example: <a href="https://wiki.mozilla.org/Mobile/UI/Designs/TouchScreen" rel="nofollow">https://wiki.mozilla.org/Mobile/UI/Designs/TouchScreen</a></p> http://stackoverflow.com/questions/553463/jquery-ajax-character-encoding-problem/553472#553472 3 Answer by yoavf for jQuery AJAX Character Encoding Problem yoavf 2009-02-16T14:33:50Z 2009-02-16T15:31:13Z <p>UTF-8 is supposed to handle all accents and foreign chars - why not use it on your data source? </p> <p><strong>EDIT</strong><br /> <a href="http://blog.yoavfarhi.com/test.html" rel="nofollow">Here's a test file</a> with your data </p> <p>Everything should be UTF-8 in the first place. I loaded the files in notepad++, converted to utf-8 and manually changed the charactes to accents were needed. Once done everything's working like a charm.</p> <p>BTW, unless your server is defined to php-process .html files, the files you're loading with ajax aren't getting youre iso charset. If you insist on using the iso charset, request a php file instead of an html file, and define the charset in the header (not in the file itself)</p> http://stackoverflow.com/questions/553068/add-an-element-to-a-jquery-object 1 Add an element to a jquery object yoavf 2009-02-16T11:49:43Z 2009-02-16T11:51:25Z <p>I've got a cached jquery object setup like this</p> <pre><code>var comments = $('li.comment'); </code></pre> <p>When creating new elements, is there an easy way to update the <strong>comments</strong> objects instead of redfining it? I'm looking fot something like</p> <pre><code>comments += $('li.newcomment'); </code></pre> <p>Is this possible? </p> http://stackoverflow.com/questions/550493/dropdown-menu-does-not-work-when-showing-over-a-flash-in-ie6/550924#550924 0 Answer by yoavf for Dropdown menu does not work when showing over a flash in IE6 yoavf 2009-02-15T14:09:36Z 2009-02-15T14:09:36Z <p>Works for me on ie6 (ms virtual machine - xp+ie6). Flash version 10a.</p> http://stackoverflow.com/questions/543857/getting-elements-using-javascript/543862#543862 0 Answer by yoavf for Getting elements using Javascript yoavf 2009-02-12T22:52:51Z 2009-02-12T22:52:51Z <p>Quite easy with jQuery. Example:</p> <pre><code>$("li[id^='comment']") </code></pre> <p>Select all "li" where id starts with "comment".</p> <p><strong>EDIT</strong></p> <p>To get those into an array:</p> <pre><code>var myArray = new Array; $("li[id^='comment']").each(function() { var thisId = $(this).attr("id"); myArray.push(thisId); }); </code></pre> http://stackoverflow.com/questions/535967/destination-div-disappearing-in-simple-jquery-ajax-call/535976#535976 0 Answer by yoavf for 'Destination DIV' disappearing in simple jQuery AJAX call yoavf 2009-02-11T08:58:20Z 2009-02-11T08:58:20Z <p>try</p> <pre><code>$.get("/woops/store/cartsummary", {}, function(data) { $("#cart").html(data); }); </code></pre> <p>(<a href="http://docs.jquery.com/Attributes/html#val" rel="nofollow">jQuery docs</a>)</p> http://stackoverflow.com/questions/535879/charset-for-foreign-languages/535899#535899 4 Answer by yoavf for Charset for foreign languages yoavf 2009-02-11T08:28:06Z 2009-02-11T08:28:06Z <p><a href="http://en.wikipedia.org/wiki/UTF-8" rel="nofollow">UTF-8</a></p> http://stackoverflow.com/questions/527695/ie7-an-excessive-margin-in-form-for-textarea/527746#527746 3 Answer by yoavf for IE7 : an excessive margin in form for textarea yoavf 2009-02-09T11:10:56Z 2009-02-10T17:11:02Z <p>Totally weird. I actually get a 320px (=parent div margin) in ie7.</p> <p>You can overwrite with an ie7 only negative margin, but that's awful...</p> <p><strong>EDIT:</strong> OK, I have no idea why this works, but it works. this is defintely a bug:</p> <pre><code>&lt;div style="margin-left: 320px; display:inline-block;"&gt; &lt;form method="post" action=""&gt;&lt;fieldset&gt; &lt;textarea name="prj_comment" id="prj_comment" rows="5" cols="50" style="margin: 0; padding: 0"&gt;&lt;/textarea&gt; &lt;/fieldset&gt;&lt;/form&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/527484/dhtml-menu-not-displaying/527547#527547 0 Answer by yoavf for DHTML menu not displaying yoavf 2009-02-09T09:34:06Z 2009-02-09T09:34:06Z <p>You server might not handle spaces in urls - try renaming your directory (and references) to Welcome_to_Epicenter_Fitness_files</p> <p><strong>Edit:</strong> also, this looks like the directory structure of a webpage saved with IE or Firefox (save as complete webpage). I'm not sure all JS is saved that way. Include files are definitely NOT saved, so double check your JS files contain the aforementioned function.</p> http://stackoverflow.com/questions/527301/should-i-name-my-page-for-the-purposes-of-custom-css-it-needs/527377#527377 2 Answer by yoavf for Should I 'name my page' for the purposes of custom css it needs? yoavf 2009-02-09T07:56:15Z 2009-02-09T07:56:15Z <p>Sometime you just don't have a choice, and you've got to have specific css for certain pages .</p> <p>I'm usually adding a unique ID to the body of each page - no need for the additional div then.</p> <pre><code>&lt;body id="page-x"&gt; &lt;h3&gt;Page Title&lt;/h3&gt; &lt;/body&gt; </code></pre> <p>and then if necessary, I add as little as possible to the main stylesheet (to prevent additional http requests)</p> <pre><code>#page-x h3 { custom css... } </code></pre> http://stackoverflow.com/questions/516789/facebook-wordpress-comment-feedback-integration/525546#525546 2 Answer by yoavf for Facebook-WordPress comment/feedback integration yoavf 2009-02-08T11:09:44Z 2009-02-08T11:09:44Z <p>There's a bunch of facebook-connect enabled WordPress plugins that might help you achieve this. Here's a couple:</p> <ul> <li><a href="http://www.sociable.es/facebook-connect/" rel="nofollow">Sociable Facebook Connect</a></li> <li><a href="http://wordpress.org/extend/plugins/wp-facebookconnect/" rel="nofollow">WP-Facebook-Connect</a></li> </ul> http://stackoverflow.com/questions/515441/commonly-used-keyboard-shortcuts-in-web-apps 3 Commonly used keyboard shortcuts in web apps yoavf 2009-02-05T11:04:16Z 2009-02-06T09:02:20Z <p>I'm setting up keyboard shortcuts for a web app, and I'm wondering: <strong>What are the most commonly used keyboard shortcuts (in web applications)?</strong> </p> <p>For example, Google's gmail and reader uses</p> <blockquote> <p>j / k : previous/next<br /> o / Enter: open/expand</p> </blockquote> <p>which seems to have stuck, but they also use</p> <blockquote> <p>p/n: previous / next message</p> </blockquote> <p>...which to me seems a little awkward.</p> <p>Are you using keyboard shortcuts in your web application? If so, what are they?</p> http://stackoverflow.com/questions/28196/mysql-using-and-operation-on-tags-and-categories-tables-in-wordpress 1 Mysql: Using "AND" Operation on tags and categories tables in Wordpress yoavf 2008-08-26T14:29:38Z 2009-02-05T15:26:06Z <p>This is a very specific question regarding <strong>mysql</strong> as implemented in <strong>WordPress</strong>.</p> <p>I'm trying to develop a plugin which will show (select) posts that have specific '<strong>tags</strong>' and belong to specific '<strong>categories</strong>' (both multiple)</p> <p>I was told it's impossible because the way categories and tags are stored:</p> <ol> <li>wp_posts contains a lists of post, each posts have an "ID" <img src="http://www.onoff.co.il/soq/soqwp-posts.jpg" alt="wp_posts" /></li> <li>wp_terms contains a list of terms (both categories and tags). Eac term has a TERM_ID <img src="http://www.onoff.co.il/soq/soqwp-terms.jpg" alt="wp_terms" /></li> <li>wp_term_taxonomy has a list of terms with their TERM_IDs and has a Taxonomy definition for each one of those (either a Category or a Tag) <img src="http://www.onoff.co.il/soq/soqwp-term_taxonomy.jpg" alt="wp_term_taxonomy" /></li> <li>wp_term_relationship has associations betweens terms and posts <img src="http://www.onoff.co.il/soq/soqwp-term_relationship.jpg" alt="wp_term_relationship" /></li> </ol> <p>How can I join the tables to get all posts with tags "Nuclear" <strong>and</strong> "Deals" that also belong to the category "Category1" ?</p> <p>Thanks!</p> http://stackoverflow.com/questions/511066/ie7-css-inherit-problem/511090#511090 2 Answer by yoavf for IE7 CSS inherit problem yoavf 2009-02-04T12:12:19Z 2009-02-04T12:12:19Z <p>A bug's a bug and there's nothing much you can do, short of workarounds.</p> <p>There's a test for inherit support <a href="http://www.brunildo.org/test/inherit.html" rel="nofollow">here</a>.</p> <p>You can also try to use a script like <a href="http://code.google.com/p/ie7-js/" rel="nofollow">ie7-js</a>, which <em>"is a JavaScript library to make Microsoft Internet Explorer behave like a standards-compliant browser"</em></p> http://stackoverflow.com/questions/1872563/how-can-i-restrict-find-to-only-search-specific-sub-directories/1872565#1872565 Comment by yoavf on How can I restrict find to only search specific sub-directories? yoavf 2009-12-09T09:20:12Z 2009-12-09T09:20:12Z No - but I've rewrote the question so hopefully I'm explaining myself better now. http://stackoverflow.com/questions/1456640/change-query-argument-of-jquery-suggest-plugin/1456655#1456655 Comment by yoavf on Change query argument of jQuery suggest plugin yoavf 2009-09-21T21:01:51Z 2009-09-21T21:01:51Z @dmitiri - doesn't seem to have any effect. How can you know which function take precedence ? http://stackoverflow.com/questions/1456640/change-query-argument-of-jquery-suggest-plugin Comment by yoavf on Change query argument of jQuery suggest plugin yoavf 2009-09-21T20:31:14Z 2009-09-21T20:31:14Z This is the existing plugin: <a href="https://core.trac.wordpress.org/browser/trunk/wp-includes/js/jquery/suggest.dev.js" rel="nofollow">core.trac.wordpress.org/browser/trunk/&hellip;</a> http://stackoverflow.com/questions/629297/i-prepend-the-css-to-the-end-of-head-tag/629306#629306 Comment by yoavf on i prepend the css to the end of head tag yoavf 2009-03-10T08:37:05Z 2009-03-10T08:37:05Z No problem, just check out <a href="http://docs.jquery.com/CSS/css" rel="nofollow">docs.jquery.com/CSS/css</a>, you can change as much css as you need http://stackoverflow.com/questions/629297/i-prepend-the-css-to-the-end-of-head-tag/629309#629309 Comment by yoavf on i prepend the css to the end of head tag yoavf 2009-03-10T08:24:45Z 2009-03-10T08:24:45Z I think he meant he's adding a css block to the head tag with jquery... http://stackoverflow.com/questions/606069/expand-a-link-to-show-image-without-using-javascript/606081#606081 Comment by yoavf on Expand a link to show image without using javascript yoavf 2009-03-03T12:02:39Z 2009-03-03T12:02:39Z @Rakesh - you cannot use php without reloading the page - unless you use ajax, which is javascript etc... http://stackoverflow.com/questions/432646/hip-application-name/432806#432806 Comment by yoavf on Hip application name yoavf 2009-02-26T15:17:41Z 2009-02-26T15:17:41Z &quot;Would you be embarrassed asking your boss to buy it for your team? &quot;Yeah, um, I think we should use, ah, The, er, GIMP for all our graphics.&quot; &lt;- Good thing that GIMP is free then :) http://stackoverflow.com/questions/590006/stable-php-cms-for-hacking-against/590547#590547 Comment by yoavf on Stable PHP CMS for hacking against yoavf 2009-02-26T14:55:50Z 2009-02-26T14:55:50Z &quot;Is there a cms that is customizable without modifying core files so that security updates don't break my customizations?&quot; WordPress is really good at this... http://stackoverflow.com/questions/553463/jquery-ajax-character-encoding-problem/553472#553472 Comment by yoavf on jQuery AJAX Character Encoding Problem yoavf 2009-02-16T16:08:02Z 2009-02-16T16:08:02Z Pas de problemes :) What editor do you use? you have to make sure your file is saved as utf-8 http://stackoverflow.com/questions/553463/jquery-ajax-character-encoding-problem/553472#553472 Comment by yoavf on jQuery AJAX Character Encoding Problem yoavf 2009-02-16T15:26:10Z 2009-02-16T15:26:10Z You can't copy and past - I hade to manually change the source for the first time for the accents to show up. But once I did, everything is working fine... http://stackoverflow.com/questions/553463/jquery-ajax-character-encoding-problem/553472#553472 Comment by yoavf on jQuery AJAX Character Encoding Problem yoavf 2009-02-16T14:49:15Z 2009-02-16T14:49:15Z Again - shouldn't be a problem. Here's your page converted to utf-8. Eveythings cool, browser has no problems reading it: <a href="http://blog.yoavfarhi.com/test.html" rel="nofollow">blog.yoavfarhi.com/test.html</a> http://stackoverflow.com/questions/553463/jquery-ajax-character-encoding-problem/553472#553472 Comment by yoavf on jQuery AJAX Character Encoding Problem yoavf 2009-02-16T14:36:59Z 2009-02-16T14:36:59Z That shouldn't happen. What's your data source? Database? Flat text file? http://stackoverflow.com/questions/553068/add-an-element-to-a-jquery-object/553075#553075 Comment by yoavf on Add an element to a jquery object yoavf 2009-02-16T11:55:06Z 2009-02-16T11:55:06Z Thanks, I knew it was simple... :) http://stackoverflow.com/questions/550493/dropdown-menu-does-not-work-when-showing-over-a-flash-in-ie6/550924#550924 Comment by yoavf on Dropdown menu does not work when showing over a flash in IE6 yoavf 2009-02-16T09:35:51Z 2009-02-16T09:35:51Z is says 6.0.2900.5512.xpsp_sp3 http://stackoverflow.com/questions/543857/getting-elements-using-javascript/543862#543862 Comment by yoavf on Getting elements using Javascript yoavf 2009-02-12T23:19:06Z 2009-02-12T23:19:06Z JimmyP - wasn't aware of that! thanks.