User Jonathan Sampson - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T07:37:17Z http://stackoverflow.com/feeds/user/54680 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1932152/how-to-focus-a-tr-or-td-tag-using-jquery-or-java-script/1932205#1932205 1 Answer by Jonathan Sampson for how to focus a tr or td tag using jquery or java script? Jonathan Sampson 2009-12-19T06:46:43Z 2009-12-19T06:46:43Z <p>It appears you have an input field with the id "focus" within a td, so I'm assuming you want to focus on that input itself. With jQuery, you would do this:</p> <pre><code>$("input#focus").focus(); </code></pre> <p>This will cause the focus to be brought to that particular element once called. I see that you also tried setting the ID of a particular TD to "focus" as well; you should only use a unique ID value once per page. If you feel the need to use a single value to represent many elements, consider using classnames instead as there can exist any number of them on a page.</p> http://stackoverflow.com/questions/1931575/have-first-column-in-html-table-flexible-when-table-width100/1931583#1931583 2 Answer by Jonathan Sampson for Have first column in HTML table flexible when table width=100% Jonathan Sampson 2009-12-19T01:11:17Z 2009-12-19T01:11:17Z <p>Set explicit widths for 2 - 8 and Cell 1 will determine its own width with the remaining space. You could also set no-wrap for the whitespace in the first cell too so the contents don't wrap, but force the cell to grow when necessary.</p> http://stackoverflow.com/questions/1930975/how-do-i-make-ajax-calls-at-intervals-without-overlap/1931014#1931014 2 Answer by Jonathan Sampson for How do I make Ajax calls at intervals without overlap? Jonathan Sampson 2009-12-18T22:19:38Z 2009-12-18T22:19:38Z <p>You could set a flag that is updated upon each success/initiation of an ajax call and checked before any future call is made...</p> <pre><code>var is_calling = false; setInterval(function(){ if (is_calling == false) { is_calling = true; // do ajax call, restore flag on success } }, 5000); </code></pre> http://stackoverflow.com/questions/1930909/css-shades-darker-and-lighter/1930916#1930916 4 Answer by Jonathan Sampson for CSS: shades darker and lighter Jonathan Sampson 2009-12-18T22:01:25Z 2009-12-18T22:17:16Z <h3>Technically, no...</h3> <p>No, you'll have to explicitly declare a color. You could jump into photoshop and copy the hex of your favorite color from the color-palette.</p> <h3>But if you're really smooth, you can...</h3> <p>One other option to simulate shades is to use transparent png files, and setting them as the background image over the top of a background color.</p> <pre><code>.red { background-color:red; } .darkerRed { background:red url("fiftyPercentOpaqueBlack.png"); } </code></pre> <h3>And now for an example...</h3> <p>For example, the .png below is actually solid black, with an opacity of 50% which creates a shade of grey when viewed on top of white, or <code>#ffffff</code>.</p> <p><img src="http://www.sampsonresume.com/labs/btrans.png" alt="alt text"></p> http://stackoverflow.com/questions/1930629/jquery-and-2-fadein-in-one-click/1930637#1930637 2 Answer by Jonathan Sampson for jQuery and 2 fadeIn in one click Jonathan Sampson 2009-12-18T20:54:10Z 2009-12-18T20:54:10Z <p>Yes, that's fine.</p> <p>There are various ways to do many things, but something as simple as this doesn't really require a very technical approach.</p> http://stackoverflow.com/questions/1928276/many-mysql-databases-problem/1928287#1928287 1 Answer by Jonathan Sampson for Many MySQL databases - problem? Jonathan Sampson 2009-12-18T13:47:45Z 2009-12-18T13:47:45Z <p>Not necessarily. Shared-hosting services will usually have many hundreds of databases on each server, all relatively small. Just be sure you're not confusing "Databases" with "Tables," as is a problem for those new to that area of development.</p> http://stackoverflow.com/questions/1926673/apply-plugin-to-a-new-element-in-the-dom-jquery/1926679#1926679 0 Answer by Jonathan Sampson for apply plugin to a new element in the DOM (jquery) Jonathan Sampson 2009-12-18T06:28:36Z 2009-12-18T06:28:36Z <p>$.live() will not work in this case. You'll need to manually re-apply it to all new tables following the ajax-success.</p> http://stackoverflow.com/questions/1926608/website-development-for-free/1926670#1926670 1 Answer by Jonathan Sampson for website development for free Jonathan Sampson 2009-12-18T06:26:00Z 2009-12-18T06:26:00Z <p>Setup a <a href="http://www.wordpress.com" rel="nofollow">wordpress</a> site.</p> http://stackoverflow.com/questions/1926652/how-can-i-accept-credit-card-transaction-in-my-web-apps/1926656#1926656 1 Answer by Jonathan Sampson for How can I accept credit card transaction in my Web Apps? Jonathan Sampson 2009-12-18T06:22:24Z 2009-12-18T06:22:24Z <p>Various methods. <a href="http://www.paypal.com" rel="nofollow">Paypal</a> is a quick and easy option, or you can go with a service like <a href="http://www.authorize.net/" rel="nofollow">Authorize.net</a> which will cost a bit, but will also provide a quick and commonly-used payment-gateway.</p> <p>Depending on the ecommerce solution you're using, there are likely several creditcard-modules already developed by the community of users.</p> http://stackoverflow.com/questions/1926624/php-how-to-generate-biased-random-numbers/1926636#1926636 2 Answer by Jonathan Sampson for PHP: How to generate biased random numbers Jonathan Sampson 2009-12-18T06:16:48Z 2009-12-18T06:16:48Z <p>You could generate a random number between 0 and 1, and use it as the percentage of weight for any given banner. If the number is .3 or less, then a less popular (30% of the time) banner will show. If greater, a greater (70% of the time) banner will show.</p> http://stackoverflow.com/questions/1926542/how-to-format-datetime-most-easily-in-php/1926543#1926543 0 Answer by Jonathan Sampson for How to format datetime most easily in PHP? Jonathan Sampson 2009-12-18T05:50:29Z 2009-12-18T05:50:29Z <p>Using the <a href="http://us2.php.net/manual/en/function.date.php" rel="nofollow"><code>date()</code></a> method.</p> <pre><code>print date("d/m/Y", strtotime("2009-12-09 13:32:15")); </code></pre> http://stackoverflow.com/questions/1926329/the-following-html-not-working-in-ie/1926338#1926338 4 Answer by Jonathan Sampson for The following html not working in IE? Jonathan Sampson 2009-12-18T04:48:41Z 2009-12-18T05:47:49Z <p>It's improper. If you want that button to go to signup.php, do so the proper way:</p> <pre><code>&lt;form method="GET" action="signup.php"&gt; &lt;input type="submit" value="Register"&gt; &lt;/form&gt; </code></pre> <p>Or the javascript method:</p> <pre><code>&lt;input type="button" value="Register" onclick="window.location='signup.php'" /&gt; </code></pre> http://stackoverflow.com/questions/1926283/hide-all-the-id-in-javascript/1926290#1926290 6 Answer by Jonathan Sampson for hide all the id in javascript Jonathan Sampson 2009-12-18T04:34:03Z 2009-12-18T04:34:03Z <pre><code>document.getElementById("media").style.display = 'none'; </code></pre> <p>As stated in the comments, you really should only use a particular ID value once per page. Use classnames for multiple elements.</p> http://stackoverflow.com/questions/1926249/elegant-coding-how-to-deal-with-hidden-invisible-html-code/1926257#1926257 5 Answer by Jonathan Sampson for Elegant coding, how to deal with hidden/invisible HTML code ? Jonathan Sampson 2009-12-18T04:20:33Z 2009-12-18T04:20:33Z <p>This type of stuff isn't a waste of bandwidth, no. And yes, you should only include those controls on the page if they are available to the user presently viewing the page, so be sure to check who your logged-in (if they're logged-in) user is and what their relationship is to the item they're viewing.</p> <p>This could be as simple as:</p> <pre><code>if ($current_user_id == $question_asker_id) { // show 'accept as best answer' form } </code></pre> <p>Be sure to check the form-data on the server-side too before permitting any changes to anything.</p> http://stackoverflow.com/questions/1926223/z-index-transaparent-image/1926243#1926243 2 Answer by Jonathan Sampson for Z-Index Transaparent Image Jonathan Sampson 2009-12-18T04:15:39Z 2009-12-18T04:15:39Z <p>I would suggest you just make the image a link, but if you can't, you can absolutely-position a link over it:</p> <pre><code>.header { position:relative; } .header .bannerLink { position:absolute; top:0; left:0; width:100px, height:100px; display:block; } </code></pre> <p>--</p> <pre><code>&lt;div class="header"&gt; &lt;img src="banner.jpg" /&gt; &lt;a href="index.php" class="bannerLink"&gt;&lt;span&gt;Click Me&lt;/span&gt;&lt;/a&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/1924971/ie-unintended-vertical-space-in-between-divs/1924989#1924989 4 Answer by Jonathan Sampson for IE - Unintended Vertical Space in Between Divs Jonathan Sampson 2009-12-17T22:16:49Z 2009-12-17T22:16:49Z <p>You're missing a lot of essential HTML, starting with a valid doctype. Once you have this essential markup into place, many (if not all) of your errors may vanish. You can verify your markup by visiting the w3c validation service online at: <a href="http://validator.w3.org/" rel="nofollow">http://validator.w3.org/</a></p> <p>Use the following as a template:</p> <pre><code>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"&gt; &lt;html&gt; &lt;head&gt; &lt;title&gt;Website Title Here&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;!-- Body Content Here --&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/1924723/using-jquery-to-add-remove-a-class-based-on-body-id/1924745#1924745 1 Answer by Jonathan Sampson for Using Jquery to add/remove a class based on body Id Jonathan Sampson 2009-12-17T21:34:07Z 2009-12-17T21:40:59Z <p>Assuming your body ID will not always match up perfectly with the file-name of its corresponding link, you can do it this way.</p> <pre><code>$("body#index a[href='index.php']").addClass("current-selected"); $("body#service a[href='service.php']").addClass("current-selected"); </code></pre> <p>If your body ID will always match your corresponding link href value, you can extract the body ID first, and use it as a variable within the jQuery selector:</p> <pre><code>var body_id = $("body").attr("id"); $("a[href='"+body_id+".php']").addClass("current-selected"); </code></pre> http://stackoverflow.com/questions/1924222/mimick-google-results-buttons-can-that-be-done-via-jquery/1924241#1924241 0 Answer by Jonathan Sampson for mimick google results buttons, can that be done via jquery? Jonathan Sampson 2009-12-17T20:07:09Z 2009-12-17T20:07:09Z <p>Seems to me you could click the button, the entry would be replaced with a cloud-exploding gif, and then the result would be hidden. Maybe the id of that result would be associated with a "dont-show" list which itself is associated with your ipaddress/userid/session.</p> <pre><code># Just an idea - untested $(".result .deleteButton").click(function(){ $(this) .parent() .html($(".cloud").clone()) .fadeOut(); }); </code></pre> http://stackoverflow.com/questions/1923683/link-in-one-div-trying-to-load-content-in-a-seperate-div/1923885#1923885 1 Answer by Jonathan Sampson for Link in one div, trying to load content in a seperate div Jonathan Sampson 2009-12-17T19:04:34Z 2009-12-17T19:04:34Z <p>Supposing your asynchronous-links have a classname of <code>.ajaxy</code>, you could do something like this:</p> <pre><code>$("#sidebar a.ajaxy").click(function(e){ e.preventDefault(); var url = $(this).attr("href"); $("#div2").load(url); }); </code></pre> <p>-</p> <pre><code>&lt;a href="home.html" class="ajaxy"&gt;Home&lt;/a&gt; &lt;a href="gallery.html" class="ajaxy"&gt;Gallery&lt;/a&gt; </code></pre> <p>This way the links still work when jQuery is unable to run due to javascript being disabled.</p> http://stackoverflow.com/questions/1923233/create-a-styled-dropdown-like-on-jquery-ui/1923251#1923251 1 Answer by Jonathan Sampson for Create a styled Dropdown like on jquery UI Jonathan Sampson 2009-12-17T17:19:00Z 2009-12-17T17:19:00Z <p>A nice example of a plugin exists <a href="http://www.filamentgroup.com/lab/jquery%5Fui%5Fselectmenu%5Fan%5Faria%5Faccessible%5Fplugin%5Ffor%5Fstyling%5Fa%5Fhtml%5Fselect/" rel="nofollow">here</a>. Enabled by nothing more than <code>$('select').selectmenu();</code>.</p> http://stackoverflow.com/questions/1923086/pure-javascript-equivalent-of-jquery-largebox2link-click/1923097#1923097 8 Answer by Jonathan Sampson for pure javascript equivalent of jquery $("#large_box2_link").click(); Jonathan Sampson 2009-12-17T16:52:22Z 2009-12-17T16:52:22Z <pre><code>document.getElementById("large_box2_link").click(); </code></pre> http://stackoverflow.com/questions/1922910/force-browser-to-clear-cache/1922919#1922919 1 Answer by Jonathan Sampson for Force browser to clear cache Jonathan Sampson 2009-12-17T16:26:20Z 2009-12-17T16:26:20Z <p>Look into the <a href="http://www.i18nguy.com/markup/metatags.html" rel="nofollow">cache-control</a> and the <a href="http://www.i18nguy.com/markup/metatags.html" rel="nofollow">expires</a> META Tag.</p> <p><code>&lt;META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE"&gt;</code><br/> <code>&lt;META HTTP-EQUIV="EXPIRES" CONTENT="Mon, 22 Jul 2002 11:12:01 GMT"&gt;</code></p> <p>Another common practices is to append constantly-changing strings to the end of the requested files. For instance:</p> <p><code>&lt;script type="text/javascript" src="main.js?v=12392823"&gt;&lt;/script&gt;</code></p> http://stackoverflow.com/questions/1921997/how-i-can-get-variable-in-the-class/1922008#1922008 2 Answer by Jonathan Sampson for how i can get variable in the class Jonathan Sampson 2009-12-17T14:04:24Z 2009-12-17T14:12:21Z <p>If your variable is <em>public</em>, yes. Be sure to use <a href="http://www.php.net/manual/en/language.oop5.visibility.php" rel="nofollow">proper visibility</a> for your variables and methods.</p> <p>Typically, you'll want to use <code>get()</code> and <code>set()</code> methods to handle data within the class itself. These keeps people's grubby hands off of your data :) Generally these will return the value from within the class ( <code>return $this-&gt;val;</code> ) so nobody is directly able to access the variable.</p> http://stackoverflow.com/questions/1921855/jquery-how-can-i-temporarily-disable-the-onclick-event-listener-after-the-event/1922025#1922025 0 Answer by Jonathan Sampson for jQuery - How can I temporarily disable the onclick event listener after the event has been fired? Jonathan Sampson 2009-12-17T14:07:15Z 2009-12-17T14:07:15Z <p>You could make the action within the click based upon a boolean value. When it's clicked, change the boolean value and uset setTimeout() to change it back after a few seconds. That would effectively limit the user to clicking the button only once every few seconds.</p> <pre><code>var isEnabled = true; $("a.clickMe").click(function(e){ e.preventDefault(); if (isEnabled == true) { isEnabled = false; // disable future clicks for now do_Something(); setTimeout(function(){ isEnabled = true; }, 3000); // restore functionality after 3 seconds } }); </code></pre> http://stackoverflow.com/questions/1921936/how-to-generate-a-popup-window-like-that-in-google-maps-using-jquery-or-jquery-pl/1921954#1921954 1 Answer by Jonathan Sampson for How to generate a popup window like that in Google maps using Jquery or Jquery plugin? Jonathan Sampson 2009-12-17T13:55:58Z 2009-12-17T14:01:51Z <p>I'm assuming Google Maps is merely an example of the effect you want, and not your project-base:</p> <p>This is really nothing more than showing a specific div, and later hiding it.</p> <pre><code>$("a.popup1").click(function(e){ e.preventDefault(); $("div.popup1").toggle(); }); </code></pre> <p>-</p> <pre><code>&lt;a class="popup1" href="enable-javascript.html"&gt;Show Popup&lt;/a&gt; &lt;div class="popup1"&gt;&lt;p&gt;This is where your data goes.&lt;/p&gt;&lt;/div&gt; </code></pre> <p>-</p> <p>If Google Maps is actually your project-base, I would suggest checking out <a href="http://github.com/digitalspaghetti/jmaps/" rel="nofollow">jMaps</a>, a jQuery Google Maps Plugin. Examples of adding Markers and pointHTML (those windows you speak of) can be found here: <a href="http://github.com/digitalspaghetti/jmaps/blob/master/docs/examples/google/Google.Markers.AddMarker.html" rel="nofollow">http://github.com/digit...Google.Markers.AddMarker.html</a></p> http://stackoverflow.com/questions/1918894/store-an-image-into-db/1918910#1918910 1 Answer by Jonathan Sampson for Store an image into DB Jonathan Sampson 2009-12-17T01:24:23Z 2009-12-17T01:30:50Z <h3>How to:</h3> <p>Use <code>file_get_contents()</code> on the returned thumbnail, and then write the results to the database blob field.</p> <pre><code>$image = file_get_contents($thumbnail); mysql_query("INSERT INTO tblName (fieldName) VALUES ('{$image}')"); </code></pre> <h3>But, you may not want to because:</h3> <p>That being said, I would encourage you to really consider what you're doing. Images pulled from the database won't be cached, from my understanding. Additionally, database connections will remain opened for much longer, using more resources. Also, your database size will grow rapidly, making it more laborious to manage migration down the road.</p> http://stackoverflow.com/questions/1918610/need-help-converting-this-inline-javascript-to-a-jquery-function/1918623#1918623 1 Answer by Jonathan Sampson for Need help converting this inline javascript to a jQuery function Jonathan Sampson 2009-12-16T23:51:53Z 2009-12-16T23:51:53Z <pre><code>$(":text[name='search']") .focus(function(){ if ($(this).val() == 'Search by name') $(this).val("").css("color", "black"); }) .blur(function(){ if ($(this).val() == "") $(this).val("Search by name").css("color", "#aaa"); }); </code></pre> http://stackoverflow.com/questions/1917762/how-to-get-the-value-after-the-hash-in-somepage-phpname/1917783#1917783 2 Answer by Jonathan Sampson for How to get the value after the hash in "somepage.php#name"? Jonathan Sampson 2009-12-16T21:13:02Z 2009-12-16T21:13:02Z <h1>Javascript</h1> <p><code>window.location.hash</code> will give you this value. You can then pass it (via AJAX) to the server for results.</p> <h1>PHP</h1> <p>Check the Fragment of <a href="http://www.php.net/manual/en/function.parse-url.php" rel="nofollow">parse_url();</a></p> <p><strong>Return Values</strong></p> <p>On seriously malformed URLs, parse_url() may return FALSE and emit a E_WARNING. Otherwise an associative array is returned, whose components may be (at least one):</p> <ul> <li>scheme - e.g. http</li> <li>host</li> <li>port</li> <li>user</li> <li>pass</li> <li>path</li> <li>query - after the question mark ?</li> <li><strong>fragment - after the hashmark #</strong></li> </ul> http://stackoverflow.com/questions/1917687/what-are-some-alternatives-to-css-to-style-your-websites-in-html/1917724#1917724 9 Answer by Jonathan Sampson for What are some alternatives to CSS to style your websites in HTML? Jonathan Sampson 2009-12-16T21:04:34Z 2009-12-16T21:04:34Z <p>CSS is not the problem. Many who write CSS are.</p> <p>Write your HTML/CSS/Javascript carefully, and you won't have any major problems. You may at times be required to re-think the "easiest route," but don't blame the technology. I have yet to use any hacks in my work, and I find no problems getting my markup and styles to operate as expected. As I said, sometimes you'll need to stop, rethink, read a bit, and return to the project. But don't blame the technology.</p> http://stackoverflow.com/questions/1917526/jquery-selector-question-referencing-a-specific-element-without-knowing-the-id/1917653#1917653 1 Answer by Jonathan Sampson for Jquery selector question: referencing a specific element without knowing the ID Jonathan Sampson 2009-12-16T20:55:05Z 2009-12-16T20:55:05Z <p>There are many ways to select elements. Rather than giving you an exhaustive list of examples, I would invite you to see the <a href="http://docs.jquery.com/Selectors" rel="nofollow">jQuery Selectors</a> page.</p> http://stackoverflow.com/questions/1932162/multiple-iframes Comment by Jonathan Sampson on Multiple iframes Jonathan Sampson 2009-12-19T06:24:04Z 2009-12-19T06:24:04Z Please include more details, and some of your code. http://stackoverflow.com/questions/1931971/access-data-in-return-value/1931973#1931973 Comment by Jonathan Sampson on access data in return value Jonathan Sampson 2009-12-19T04:44:39Z 2009-12-19T04:44:39Z More discussion over at <a href="http://stackoverflow.com/questions/13109/php-access-array-value-on-the-fly" rel="nofollow" title="php access array value on the fly">stackoverflow.com/questions/13109/&hellip;</a> http://stackoverflow.com/questions/1931971/access-data-in-return-value Comment by Jonathan Sampson on access data in return value Jonathan Sampson 2009-12-19T04:44:06Z 2009-12-19T04:44:06Z <a href="http://stackoverflow.com/questions/13109/php-access-array-value-on-the-fly" rel="nofollow" title="php access array value on the fly">stackoverflow.com/questions/13109/&hellip;</a> http://stackoverflow.com/questions/1930975/how-do-i-make-ajax-calls-at-intervals-without-overlap Comment by Jonathan Sampson on How do I make Ajax calls at intervals without overlap? Jonathan Sampson 2009-12-18T22:18:53Z 2009-12-18T22:18:53Z Welcome to StackOverflow. Great first question. http://stackoverflow.com/questions/1926692/percentage-layout-not-adding-up-in-ie6 Comment by Jonathan Sampson on Percentage layout not adding up in IE6 Jonathan Sampson 2009-12-18T06:35:02Z 2009-12-18T06:35:02Z You may need to read the 960 Spec again. You're using alpha and omega together on the same element from time to time. http://stackoverflow.com/questions/1926624/php-how-to-generate-biased-random-numbers Comment by Jonathan Sampson on PHP: How to generate biased random numbers Jonathan Sampson 2009-12-18T06:32:13Z 2009-12-18T06:32:13Z Chacha101, everybody knows that 4 is a better random number than 12 :) http://stackoverflow.com/questions/1926624/php-how-to-generate-biased-random-numbers Comment by Jonathan Sampson on PHP: How to generate biased random numbers Jonathan Sampson 2009-12-18T06:15:52Z 2009-12-18T06:15:52Z What have you tried? http://stackoverflow.com/questions/1926309/common-mistakes-in-web-development Comment by Jonathan Sampson on Common mistakes in web development Jonathan Sampson 2009-12-18T04:41:11Z 2009-12-18T04:41:11Z This has been asked over and over in various formats. Google &quot;site:stackoverflow.com mistakes web developer&quot; http://stackoverflow.com/questions/1926249/elegant-coding-how-to-deal-with-hidden-invisible-html-code/1926257#1926257 Comment by Jonathan Sampson on Elegant coding, how to deal with hidden/invisible HTML code ? Jonathan Sampson 2009-12-18T04:36:54Z 2009-12-18T04:36:54Z If it is something that should be accessible by all users, then include it. http://stackoverflow.com/questions/1926183/best-way-to-delete-current-row-in-html-table-using-jquery-sortable-datatable-plug/1926209#1926209 Comment by Jonathan Sampson on best way to delete current row in html table using jquery sortable datatable plugin Jonathan Sampson 2009-12-18T04:23:20Z 2009-12-18T04:23:20Z You didn't say that in your question. We can't read your mind ;) http://stackoverflow.com/questions/1925628/does-codeigniter-work-well-with-jquery/1925645#1925645 Comment by Jonathan Sampson on Does Codeigniter work well with jQuery? Jonathan Sampson 2009-12-18T04:19:00Z 2009-12-18T04:19:00Z Kohana is definitely better in my opinion. I made the switch almost a year ago. Very pleased. http://stackoverflow.com/questions/1924723/using-jquery-to-add-remove-a-class-based-on-body-id/1924745#1924745 Comment by Jonathan Sampson on Using Jquery to add/remove a class based on body Id Jonathan Sampson 2009-12-17T23:24:35Z 2009-12-17T23:24:35Z Good work, Ben! http://stackoverflow.com/questions/1924723/using-jquery-to-add-remove-a-class-based-on-body-id/1924745#1924745 Comment by Jonathan Sampson on Using Jquery to add/remove a class based on body Id Jonathan Sampson 2009-12-17T22:14:13Z 2009-12-17T22:14:13Z Ben, using firebug in firefox, I just copied and pasted the code from above directly into the console, and it resulted in the <code>current-selected</code> class being added to the index link. http://stackoverflow.com/questions/1924723/using-jquery-to-add-remove-a-class-based-on-body-id/1924745#1924745 Comment by Jonathan Sampson on Using Jquery to add/remove a class based on body Id Jonathan Sampson 2009-12-17T21:55:13Z 2009-12-17T21:55:13Z I also tried the second, and it too worked as expected. I would suggest you re-examine where you pasted the code in your project and try again - it should work. http://stackoverflow.com/questions/1924723/using-jquery-to-add-remove-a-class-based-on-body-id/1924745#1924745 Comment by Jonathan Sampson on Using Jquery to add/remove a class based on body Id Jonathan Sampson 2009-12-17T21:54:18Z 2009-12-17T21:54:18Z Ben, I just ran the first example against your site and it worked just fine.