active questions tagged jquery1.3 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T20:19:24Z http://stackoverflow.com/feeds/tag/jquery1.3 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1342650/how-to-use-jquery-ajax-with-asp-net-2-0 0 How to use JQuery AJAX with ASP.net 2.0 ? unknown (google) 2009-08-27T17:43:35Z 2009-10-16T09:00:02Z <p>I want to use JQuery Ajax with ASP.net 2.0, VS2005. Please help me out.????</p> http://stackoverflow.com/questions/837931/jquery-event-handlers-not-firing-in-ie 3 jQuery event handlers not firing in IE misteraidan 2009-05-08T02:00:33Z 2009-10-14T04:50:11Z <p>I have a list of items on a page with a set of controls to MoveUp, MoveDown and Delete.</p> <p>The controls sit at the top of list hidden by default. As you mouseover an item row, I select the controls with jquery </p> <pre><code>//doc ready function: .. var tools = $('#tools'); $('#moveup').click(MoveUp); $('#movedn').click(MoveDn); $('#delete').click(Delete); .. $('li.item').mouseover(function(){ $(this).prepend(tools); }); </code></pre> <p>This works great in Firefox .. the tools move into the current row, and the click events call the ajax functions. However, in IE6 and IE7 .. no click occurs. I tried unbinding on mouseout and rebinding on each mouseover .. to no avail.</p> <p>I also looked into various reasons outside of javascript (e.g. transparent png conflicts, z-index, position:absolute) .. also no solution found.</p> <p>I eventually needed to add a tools row to each item and show/hide on mouse over/out. Works just as well -- the only downer is that I have much more 'tools' markup on my page.</p> <p>Does anyone know why IE ignores/drops/kills the mouse events once the objects are moved (using prepend)? And why rebinding the event afterwards also has no effect? Kept me annoyed for almost 2 hours before I gave up.</p> http://stackoverflow.com/questions/1505507/why-am-i-getting-a-jquery-ui-element-is-undefined-error 3 Why am I getting a jQuery 'ui.element is undefined' error? Chad Johnson 2009-10-01T18:03:29Z 2009-10-01T19:04:23Z <p>I have the following:</p> <pre><code>$('#widgets ul').sortable( { connectWith: ['#widgets ul'], opacity: 0.7, start: function(e, ui) { fromWidgetPosition = ui.item.prevAll().length + 1; fromRowId = ui.element.attr('id'); </code></pre> <p>I just upgraded jQuery from 1.2.6 to 1.3.2, and I also upgraded the jQuery UI library to the latest version.</p> http://stackoverflow.com/questions/1318395/problem-with-removing-animating-a-youtube-flash-video-player-container 0 Problem with removing/animating a YouTube flash video-player container. ricebowl 2009-08-23T11:55:17Z 2009-09-29T17:36:21Z <p>I used the code from the following question to insert a YouTube video into a page: <a href="http://stackoverflow.com/questions/1314662/how-to-resize-a-youtube-player-from-thumbnail-size-to-normal-size">http://stackoverflow.com/questions/1314662/how-to-resize-a-youtube-player-from-thumbnail-size-to-normal-size</a>.</p> <p>Given the following html:</p> <pre><code>&lt;dl&gt; &lt;dt&gt;Thoughts of Sacrament&lt;/dt&gt; &lt;dd&gt;&lt;div class="placeholder"&gt;&lt;img src="img/H5ZEYFgmfYo.png" id="H5ZEYFgmfYo" /&gt;&lt;/div&gt;&lt;div class="close"&gt;x&lt;/div&gt;&lt;p&gt;There is no purpose to this text, it's just here in order to provide a frame of visual reference while I work upon the code behind this here 'page,' still: I hope you enjoy, uh...looking.&lt;/p&gt;&lt;/dd&gt; &lt;dt&gt;Sanity falling&lt;/dt&gt; &lt;dd&gt;&lt;img src="img/2ieLb3RAblA.png" id="2ieLb3RAblA" /&gt;&lt;/dd&gt; &lt;/dl&gt; </code></pre> <p>I expected that the following jQuery should remove the <code>.placeholder</code> div that contains the YouTube video:</p> <pre><code>$(document).ready(function(){ // ...Other code to insert the YouTube... $("div.close").click(function() { $(this).sibling("div").remove(); // $(this).parent().empty(); }); </code></pre> <p>});</p> <p>Eventually I aim to 'reverse' the original animation and then swap the youtube video for the original <code>.png</code>, but I'm having trouble accessing the relevant div. The commented out code works, and empties the parent element, but I just can't seem to access the sibling <code>.placeholder</code>.</p> <p>Any help would be more than appreciated, thanks in advance =)</p> <p><hr /></p> <h2>Update:</h2> <p>So far I've not got much further than before, the current page is over <a href="http://davidrhysthomas.co.uk/projects/jq&amp;yt_demo.html" rel="nofollow">here</a>, and the code from that page is below:</p> <pre><code> &lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"&gt; &lt;head&gt; &lt;title&gt;jQuery &amp; YouTube&lt;/title&gt; &lt;link rel="stylesheet" type="text/css" href="css/demo.css" /&gt; &lt;script type="text/javascript" src="js/jquery.js"&gt;&lt;/script&gt; &lt;!-- Currently -almost- works - unfortunately the 'close' option doesn't care if the video's been played or not (and will remove the picture if it's there). - the close button also (tries?) to animate the flash object and then drops the replacement image in. Looks wrong. On updating the page, the image -after closing/removing the video is no longer 'clickable' --&gt; &lt;script type="text/javascript"&gt; $(document).ready(function(){ $(".placeholder img").click(function () { var videoID = $(this).attr("id"); $(this).animate({ width: "445px", height: "364px" }, 600, function() { $(this).replaceWith("&lt;object id=\"" + videoID + "\" class=\"yt\" width=\"425\" height=\"344\"&gt;&lt;param name=\"movie\" value=\"http://www.youtube.com/v/" + videoID + "&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999\"&gt;&lt;/param&gt;&lt;param name=\"allowFullScreen\" value=\"true\"&gt;&lt;/param&gt;&lt;param name=\"autoplay\" value=\"1\"&gt;&lt;/param&gt;&lt;param name=\"allowscriptaccess\" value=\"always\"&gt;&lt;/param&gt;&lt;embed src=\"http://www.youtube.com/v/" + videoID + "&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999\" type=\"application/x-shockwave-flash\" allowscriptaccess=\"always\" allowfullscreen=\"true\" width=\"425\" height=\"344\"&gt;&lt;/embed&gt;&lt;/object&gt;", function() {$(this).parent().children().find("div .close").toggle()} ); }); }); $("div.close").click(function() { var videoID = $(this).parent().find("object").attr("id"); $(this).parent().children("div .placeholder").animate({ width: "252px", height: "199px" }, 600, function() { $(this).replaceWith("&lt;div class=\"placeholder\"&gt;&lt;img id=\"" + videoID + "\" src=\"img/" + videoID + ".png\" /&gt;&lt;/div&gt;"); }); }); }); &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="wrap"&gt; &lt;div id="head"&gt; &lt;div id="branding" title="demo page for jQuery issues."&gt; &lt;h1&gt;jQuery and YouTube problems&lt;/h1&gt; &lt;div id="navigation"&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="#"&gt;home&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt;videos&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt;dates&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;div id="content"&gt; &lt;dl&gt; &lt;dt&gt;Thoughts of Sacrament&lt;/dt&gt; &lt;dd&gt; &lt;div class="placeholder"&gt; &lt;img src="img/H5ZEYFgmfYo.png" id="H5ZEYFgmfYo" /&gt; &lt;/div&gt; &lt;div class="close"&gt;x&lt;/div&gt; &lt;p&gt;There is no purpose to this text, it's just here in order to provide a frame of visual reference while I work upon the code behind this here 'page,' still: I hope you enjoy, uh...looking.&lt;/p&gt; &lt;/dd&gt; &lt;dt&gt;Sanity falling&lt;/dt&gt; &lt;dd&gt; &lt;div class="placeholder"&gt; &lt;img src="img/2ieLb3RAblA.png" id="2ieLb3RAblA" /&gt; &lt;/div&gt; &lt;div class="close"&gt;x&lt;/div&gt; &lt;/dd&gt; &lt;/dl&gt; &lt;/div&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>You'll notice the over-use of divs (used because I thought -for some reason- it might make navigating the DOM easier: so far as I can tell, it didn't), for which I can only apologise. And I'll make the necessary sacrifice to <a href="http://www.meyerweb.com" rel="nofollow">Meyer</a>, <a href="http://www.molly.com" rel="nofollow">Molly</a> and <a href="http://www.simplebits.com/" rel="nofollow">Cederholm</a>.</p> http://stackoverflow.com/questions/1468188/jquery-firing-issue 0 jquery firing issue DanC 2009-09-23T19:48:44Z 2009-09-24T12:07:02Z <p>I am using a function to equalise the height of li tags returned from a database. I am also using jquery to assign certain li new classes dependant on their position in a row.</p> <p>Basocally my problem is that the positioning part of the jquery statement always works but the equal heights part will sometimes not fire, in fact it generally doesn't work on an empty cache - it will however always fire on refresh or second visit to the page.</p> <p>Live example here <a href="http://keith-ingham.com/category/archive/glasgow-east/" rel="nofollow">Link here!</a>(let me know if it works for you!)</p> <p>The jquery code I am using is listed below.</p> <pre><code> jQuery.fn.equalCols = function(){ //Array Sorter var sortNumber = function(a,b){return b - a;}; var heights = []; //Push each height into an array $(this).each(function(){ heights.push($(this).height()); }); heights.sort(sortNumber); var maxHeight = heights[0]; return this.each(function(){ //Set each column to the max height $(this).css({'height': maxHeight}); }); }; jQuery(document).ready(function($) { $(".thumbs").each(function(i) { if (i % 4 == 0) $(this).addClass("start"); if (i % 4 == 3) $(this).addClass("end"); }); $(".thumbs").each(function(i) { if (i % 3 == 0) $(this).addClass("start"); if (i % 3 == 2) $(this).addClass("end"); }); $(".event_thumbs").each(function(i) { if (i % 2 == 0) $(this).addClass("start"); }); $('.thumbs, .end, .start').equalCols(); }); </code></pre> <p>If you have an better suggestions for the code or methods to achieve the aim please shout out or if you know how to make it work - I love you.</p> http://stackoverflow.com/questions/1402190/jquery-tabs-calendar-not-binding-properly 0 Jquery tabs & calendar not binding properly Claude 2009-09-09T21:25:06Z 2009-09-09T21:25:06Z <p>I'm implementing a page jquery tab toggle that loads content from hidden divs on the page. on one of the hidden pages i have a calendar popup (part of the jQuery.UI api. this works find on it's own page but when i add it to a hidden block and then load that block into the visible window i loose the ability for the calendar to pop up correctly. i've attempted using live without luck - it's worked for other event bound elements on these hidden div pages.</p> <p>here is a sample of what im doing:</p> <pre><code>$(".tab-toggle").live("click",function() { alert("test"); $(".calendar-class").datepicker({showOn: 'both', buttonImage: 'images/icon-calendar2.gif', buttonImageOnly: false, changeMonth: true, changeYear: true, yearRange: '2009:2015'}); }); </code></pre> <p>the alert fires on each pageload but the calendar isn't being rebound to an event.</p> <pre><code>$(".calendar-class").datepicker({showOn: 'both', buttonImage: 'images/icon-calendar2.gif', buttonImageOnly: false, changeMonth: true, changeYear: true, yearRange: '2009:2015'}); </code></pre> <p>works fine in pages where it immediately loads into the viewable window but stops working when i tab over to another page and then tab back...</p> http://stackoverflow.com/questions/1371871/jquery-selector-problem 0 jQuery selector problem Kordonme 2009-09-03T07:20:31Z 2009-09-03T07:31:42Z <p>Hi!</p> <p>I have this selector:</p> <pre><code>$("table.details tbody tr:not(.details)") </code></pre> <p>But I'm wondering why this inner table gets selected too:</p> <pre><code>&lt;table class="items details"&gt; &lt;thead&gt; &lt;tr&gt; &lt;th style="width: 90%;"&gt;Test application&lt;/th&gt; &lt;th style="width: 10%;"&gt;Sent to test&lt;/th&gt; &lt;/tr&gt; &lt;/thead&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;6456&lt;/td&gt; &lt;td&gt;8/29/2009&lt;/td&gt; &lt;/tr&gt; &lt;tr class="details"&gt; &lt;td colspan="2"&gt; &lt;table&gt; &lt;tr&gt; &lt;td style="width: 100px;"&gt;Description:&lt;/td&gt; &lt;td&gt;2312313&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td colspan="2"&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;Test URL Test&lt;/td&gt; &lt;td&gt;&lt;a href="Test2" title="Visit test application"&gt;Test2&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/tbody&gt; &lt;/table&gt; </code></pre> <p>A .length property returns 6, which is the number of in total.</p> <p>But WHY?</p> http://stackoverflow.com/questions/735292/strange-behavior-when-using-jquery-fadeout-function-on-element-with-floated-eleme 1 strange behavior when using jQuery fadeOut function on element with floated element and absolutely positioned element mikez302 2009-04-09T18:03:56Z 2009-08-28T21:35:20Z <p>I am trying to use jQuery to fade out a div, using the fadeOut function. In most cases, it seems to work fine, but in certain cases, not all of the content fades out. If I have an absolutely positioned element and a floated element within the div, the fadeOut function doesn't work. If I only have an absolutely positioned element, it doesn't work. But if I have an absolutely positioned element and an unstyled element, it works. This may sound hard to explain, but you can try it yourself using this test code:</p> <pre><code>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"&gt; &lt;html&gt;&lt;head&gt; &lt;title&gt;jQuery fadeOut test&lt;/title&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8"&gt; &lt;script type="text/javascript" src="jquery-1.3.2.min.js"&gt;&lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="testBox1" style="position: relative"&gt; &lt;div&gt;test&lt;/div&gt; &lt;p style="position: absolute; left: 0; top: 0"&gt;This text should fade out.&lt;/p&gt; &lt;/div&gt; &lt;br&gt;&lt;br&gt; &lt;button type="button" onclick="$('#testBox1').fadeOut()"&gt;fade out&lt;/button&gt; &lt;!-- works --&gt; &lt;hr&gt; &lt;div id="testBox2" style="position: relative"&gt; &lt;div style="float: left"&gt;test&lt;/div&gt; &lt;p style="position: absolute; left: 0; top: 0"&gt;This text should fade out.&lt;/p&gt; &lt;/div&gt; &lt;br&gt;&lt;br&gt; &lt;button type="button" onclick="$('#testBox2').fadeOut()"&gt;fade out&lt;/button&gt; &lt;!-- doesn't work --&gt; &lt;hr&gt; &lt;div id="testBox3" style="position: relative"&gt; &lt;p style="position: absolute; left: 0; top: 0"&gt;This text should fade out.&lt;/p&gt; &lt;/div&gt; &lt;br&gt;&lt;br&gt; &lt;button type="button" onclick="$('#testBox3').fadeOut()"&gt;fade out&lt;/button&gt; &lt;!-- doesn't work --&gt; &lt;/body&gt;&lt;/html&gt; </code></pre> <p><a href="http://jsbin.com/obipe" rel="nofollow">Working Example Here</a> (add <strong>/edit</strong> to the URL to play with the example).</p> <p>Everything seems to work fine in IE7, but in Firefox and Chrome, I am getting the strange behavior. Can anyone figure out why? Am I doing something wrong, or is it a browser bug or a bug within jQuery?</p> http://stackoverflow.com/questions/1314662/how-to-resize-a-youtube-player-from-thumbnail-size-to-normal-size 0 How to resize a YouTube player, from thumbnail size to 'normal' size... ricebowl 2009-08-21T23:41:24Z 2009-08-22T23:55:33Z <p>I guess this is similar to what Facebook does, but...I haven't worked out how to follow what they do and if this is a dupe, I apologise.</p> <p>The idea is to have a thumbnail-size player (<code>width="220px"</code> <code>height="180px"</code>) that, when clicked, resizes to a 'normal' size (normal is arbitrary, of course, but for the sake of this example, if we go with <code>width="445px"</code>, <code>height="364px"</code> as the Youtube default) and then plays.</p> <p>I'm assuming that the onClick event should change the height and width properties defined in the <code>&lt;object&gt;</code> and <code>&lt;embed&gt;</code> tags, but since the object is flash I assume the flash player 'captures' the clicks rather than reporting them to the browser?</p> <p>The following video is one of those I intend to use, and is here to give a real-world example:</p> <pre><code>&lt;object class="yt" width="445" height="364"&gt; &lt;param name="movie" value="http://www.youtube.com/v/2ieLb3RAblA&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;border=1"&gt;&lt;/param&gt; &lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt; &lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt; &lt;embed src="http://www.youtube.com/v/2ieLb3RAblA&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="445" height="364"&gt;&lt;/embed&gt; &lt;/object&gt; </code></pre> <p>As an addenda, this is likely to be used in a static html page for a short while, and be moved to a php (5.2) site shortly afterwards, both php and html have jQuery 1.3.2 linked, and I'm more than happy to use a third-party plugin if such exists to do this easily.</p> <p>Any and all help is appreciated, I'm sorry for asking what may -and does, to me- appear to be a dumb question. It <em>should</em> be obvious, I guess.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1310466/jquery-with-asp-net-webforms-disabling-textboxes 1 jQuery with ASP.NET WebForms - disabling textboxes marc_s 2009-08-21T07:25:38Z 2009-08-21T10:51:55Z <p>Another jQuery noob question - what am I doing wrong??</p> <p>I have some HTML markup rendered by ASP.NET 3.5 webforms which looks like this:</p> <pre><code>&lt;input id="ctl01_cphContent_pnlBasicInfo_chkRC" type="checkbox" name="ctl01$cphContent$pnlBasicInfo$chkRC" /&gt; &lt;label for="ctl01_cphContent_cntPromos_pnlBasicInfo_chkRC"&gt;Recurrent Charges&lt;/label&gt; &lt;span id="ctl01_cphContent_cntPromos_pnlBasicInfo_lblPromoValidFor" class="rcPromo"&gt;Validity:&lt;/span&gt; &lt;span class="rcPromo"&gt; &lt;input id="ctl01_cphContent_pnlBasicInfo_rbnDiscountValidFor" type="radio" name="ctl01$cphContent$pnlBasicInfo$discountValidFor" value="rbnDiscountValidFor" checked="checked" /&gt; &lt;label for="ctl01_cphContent_cntPromos_pnlBasicInfo_rbnDiscountValidFor"&gt;valid for&lt;/label&gt; &lt;/span&gt; &lt;span class="rcPromo"&gt; &lt;input id="ctl01_cphContent_pnlBasicInfo_rbnDiscountValidUntil" type="radio" name="ctl01$cphContent$pnlBasicInfo$discountValidFor" value="rbnDiscountValidUntil" /&gt; &lt;label for="ctl01_cphContent_cntPromos_pnlBasicInfo_rbnDiscountValidUntil"&gt;valid until&lt;/label&gt; &lt;/span&gt; &lt;input name="ctl01$cphContent$pnlBasicInfo$txtDiscountMonths" type="text" id="ctl01_cphContent_pnlBasicInfo_txtDiscountMonths" class="textbox" class="rcPromo" originalValue="" style="width:30px;" /&gt; &lt;span id="ctl01_cphContent_cntPromos_pnlBasicInfo_lblMonths" class="rcPromo"&gt;&lt;/span&gt; &lt;input name="ctl01$cphContent$pnlBasicInfo$txtDiscountUntil" type="text" id="ctl01_cphContent_pnlBasicInfo_txtDiscountUntil" class="textbox" class="rcPromo" originalValue="" style="width:150px;" /&gt; </code></pre> <ul> <li>I have a checked "chkRC" which I want to trap and use to enable/disable other UI controls</li> <li>I have a number of labels, input (type=radio) and input (type=text) UI controls. These are all marked with the "rcPromo" dummy CSS class</li> <li>I have a CSS class called "textbox" for the normal textbox and "textboxDisabled" for the disabled state of the textbox, in an externally referenced CSS file, that work OK (when used in server-side code, that is)</li> </ul> <p>What I'm trying to accomplish in jQuery is this: when the "chkRC" checkbox is disabled, I want to disable all relevant UI controls.</p> <p>My jQuery looks like this:</p> <pre><code> $(document).ready(function() { $("#&lt;%= chkRC.ClientID %&gt;").click(function() { $('.rcPromo &gt; :label').toggleClass('dimmed'); if (this.checked) { $('.rcPromo').removeAttr('disabled'); $('.rcPromo .textboxDisabled').addClass('textbox').removeClass('textboxDisabled'); } else { $('.rcPromo &gt; :input').removeAttr('checked'); $('.rcPromo .textbox').addClass('textboxDisabled').removeClass('textbox'); $('.rcPromo').attr('disabled', true); } }); }); </code></pre> <p>It works fine for the labels and the radiobuttons - but I just can't get it to work with the textboxes - they just stay the same all around, nothing changes (they don't get disabled and they don't change their appearance to indicate that they're disabled, either).</p> <p>I don't understand this - I do see several (a few more than in the sample) textboxes, which are <code>&lt;input type="text"&gt;</code> in HTML, and they do have the <code>class="rcPromo"</code> and <code>class="textbox"</code> on them - so why doesn't jQuery find and update those?</p> <p>Any ideas?</p> <p>Marc</p> http://stackoverflow.com/questions/1306951/jquery-with-asp-net-webforms-for-a-poor-old-server-dev 2 jQuery with ASP.NET WebForms for a poor old server dev.... marc_s 2009-08-20T15:24:38Z 2009-08-20T17:51:24Z <p>OK, being a server developer, this Javascript voodoo on the ASP.NET page (based on a master page) rendered on the client is a bit too much for me, it seems :-)</p> <p>I decided to try to use jQuery to handle some client-side enabling and disabling of UI elements.</p> <p>I have two radio buttons (<code>rbnDoLimit</code> and <code>rbnDontLimit</code>), and three checkboxes (<code>months12</code>, <code>months24</code>, <code>months36</code>) - if I click on <code>rbnDoLimit</code>, I'd like to enable all three of them, if I click on <code>rbnDontLimit</code>, I like to clear and disable the three checkboxes. Seems simple enough, right?</p> <p>So I downloaded and included jQuery 1.3.2 in my ASP.NET 3.5 webform - works OK, I can display an "alert" on the $(document).ready event.</p> <p>My two radio buttons get rendered out in the page as:</p> <pre><code>&lt;input id="ctl01_cphContent_pnlBasicInfo_rbnDontLimit" type="radio" name="ctl01$cphContent$pnlBasicInfo$LimitMVD" value="False" checked="checked" /&gt; &lt;input id="ctl01_cphContent_pnlBasicInfo_rbnDoLimit" type="radio" name="ctl01$cphContent$pnlBasicInfo$LimitMVD" value="True" /&gt; </code></pre> <p>and my three checkboxes as:</p> <pre><code>&lt;span class="dcDetails"&gt;&lt;input id="ctl01_cphContent_pnlBasicInfo_months12" type="checkbox" name="ctl01$cphContent$pnlBasicInfo$months12" /&gt;&lt;/span&gt; &lt;span class="dcDetails"&gt;&lt;input id="ctl01_cphContent_pnlBasicInfo_months24" type="checkbox" name="ctl01$cphContent$pnlBasicInfo$months24" /&gt;&lt;/span&gt; &lt;span class="dcDetails"&gt;&lt;input id="ctl01_cphContent_pnlBasicInfo_months36" type="checkbox" name="ctl01$cphContent$pnlBasicInfo$months36" /&gt;&lt;/span&gt; </code></pre> <p>I adorned them with a CSS class of <code>dcDetails</code> (which doesn't exist - but is intended to be used for selecting them in jQuery). The first thing I noticed is that the CSS class wasn't applied to my <code>&lt;input&gt;</code> elements as expected, but onto a <code>&lt;span&gt;</code> element around the <code>&lt;input&gt;</code>...... (the first mystery to me.....). Anyway.....</p> <p>My first jQuery attempt looks like this:</p> <pre><code>&lt;script type="text/javascript"&gt; $(document).ready( $("#&lt;%= rbnDontLimit.ClientID %&gt;").click(function() { $(".dcDetails").attr('disabled','false'); }, $("#&lt;%= rbnDoLimit.ClientID %&gt;").click(function() { $(".dcDetails").attr('disabled','true'); }); &lt;/script&gt; </code></pre> <p>No luck - I can click on the two radio buttons all I want - nothing happens. I assume this is because the <code>dcDetails</code> CSS class is on the <code>&lt;span&gt;</code> around the checkboxes, right?</p> <p>OK - so it get a bit messier, but this ought to work!! Now I'm selecting the three checkboxes specifically, by their <code>ClientID</code> - this ought to be exact and get the right elements, I thought:</p> <pre><code>&lt;script type="text/javascript"&gt; $(document).ready( $("#&lt;%= rbnDontLimit.ClientID %&gt;").click(function() { $("#&lt;%= months12.ClientID %&gt;").attr('disabled','false'); $("#&lt;%= months24.ClientID %&gt;").attr('disabled','false'); $("#&lt;%= months36.ClientID %&gt;").attr('disabled','false'); }, $("#&lt;%= rbnDoLimit.ClientID %&gt;").click(function() { $("#&lt;%= months12.ClientID %&gt;").attr('disabled','true'); $("#&lt;%= months24.ClientID %&gt;").attr('disabled','true'); $("#&lt;%= months36.ClientID %&gt;").attr('disabled','true'); }); &lt;/script&gt; </code></pre> <p>Again, no luck......</p> <p>So what the heck am I missing?? All these great snazzy demos can't seem to help me understand why this isn't working - not even a bit.... I guess I'm missing something very basic, very fundamentals - but I just can't seem to figure out, what that is! :-)</p> <p>Marc</p> <p><strong>UPDATE:</strong><br /> haven't had much luck yet :-( I stripped down my sample to a barebones HTML page - but I keep having this error over and over and over again, no matter which of the various tips I try:</p> <p>Webpage error details</p> <p>Message: Object doesn't support this property or method Line: 3032 Char: 6 Code: 0 URI: file:///D:/projects/JQuery1/jquery-1.3.2.js</p> <p>Almost seems to be an error deep inside jQuery....... any ideas? </p> <p><strong>UPDATE 2:</strong><br /> I'm beginning to think I'm doing something fundamentally wrong here.... I assumed that in the document.ready() function, I could hook up the click events on the two radio buttons. Am I missing something here? Would I need to create a function that I call from the radio button's client "on click" event instead? Whatever I'm trying to do, even in my HTML editor (TopStyle 4) - this error "object doesn't support this property or method" keeps popping up all the time - conveniently <strong>neither</strong> telling me which object it refers to, <strong>nor</strong> telling me what property or method is not supported........</p> <p>Or am I doing something wrong trying to hook up two click event handler functions in the document.ready() ?? </p> <p>The scaled down, HTML only version is available at <a href="http://jquery.bluenose.ch/jquerydemo.html" rel="nofollow">http://jquery.bluenose.ch/jquerydemo.html</a> for anyone who might be interested - I expected to be able to click on the "Do Limit" radio button and have it disable the three checkboxes below it - no go :-(</p> http://stackoverflow.com/questions/1238950/parse-variable-as-json-w-jquery 2 parse variable as JSON w/ jQuery Max Fraser 2009-08-06T13:39:03Z 2009-08-06T14:50:08Z <p>I am trying to populate a form with a list of questions and radio buttons. When the page is loaded I have a variable that contains the answers they have so far as a string in JSON format:</p> <pre><code>var json = '{ "answers" : [{"84" : "Y" },{"85" : "Y" },{"86" : "Y" },{"87" : "Y" },{"88" : "Y" },{"89" : "N" },{"90" : "N" },{"91" : "N" },{"92" : "Y" },{"93" : "N" },{"94" : "Y" },{"95" : "N" },{"96" : "N" },{"97" : "Y" }]}'; </code></pre> <p>I need to loop through the answers and find the radio button with the ID matching the number IE id="84" and set it's value based on the corresponding value (Y).</p> <p>seems like getJSON is what I should be looking at but I do not need to make the call to get the data since I already have it.</p> http://stackoverflow.com/questions/1233715/jquery-ref-div-and-href-id-in-div 1 JQuery - ref div and href id in div Chris 2009-08-05T14:43:17Z 2009-08-05T14:51:42Z <p>Hi,</p> <p>I want to be able to know when someone clicks a link and then reference a var within the link that I assign as a ID. For example given a link like this:</p> <pre><code>&lt;a class="TrackClick" id="SomeUnknownVar" href="javascript:void(0)" onClick="window.open('http://someurl','','width=650,height=400,scrollbars=yes,left=150,top=100,screenX=150,screenY=100'); return false"&gt;do the deed&lt;/a&gt; </code></pre> <p>I was hoping this little bit of JQuery would do it for me, but it doesn't</p> <pre><code> $(document).ready(function() { $(".TrackClick").click(function(){ trackcode = this.id; alert("trackcode"); }); </code></pre> <p>But that doesn't work, any ideas?</p> <p>TIA!</p> http://stackoverflow.com/questions/972366/jquery-focus-function-not-working-in-firefox 0 jQuery focus function not working in Firefox Thierry Lam 2009-06-09T20:39:15Z 2009-07-30T14:51:48Z <p>The following piece of code focuses the text input after you click on the link. It works fine for Chrome 2.x, IE8 and Opera 9.64 but not on Firefox 3.0.9. The text input flashes quickly in Firefox then disappears, I'm currently working on Windows XP SP2.</p> <pre><code>&lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"&gt;&lt;/script&gt; &lt;script&gt; $(document).ready(function() { $("a").click(function() { var field_id = $(this).attr("href"); $(field_id).focus(); }); }); &lt;/script&gt; &lt;a href="#text_field"&gt;Focus&lt;/a&gt; &lt;input type="text" name="text_field" id="text_field" /&gt; </code></pre> <p>Does anyone know how to handle the above in Firefox?</p> http://stackoverflow.com/questions/1203891/how-can-i-assign-a-property-to-a-jquery-object 4 How can I assign a property to a jQuery object? yuval 2009-07-30T00:50:39Z 2009-07-30T00:57:22Z <p>Hi, It is in my understanding that referencing any DOM element in jQuery via the dollar sign (like this: <code>$("#mydiv")</code>), returns an object.</p> <p>I am looking to add an additional property to an object as such:</p> <pre><code>$("#mydiv").myprop = "some value"; </code></pre> <p>but this does not seem to work. I am trying to store a value in this object so I can reference it later.</p> <p>The following code, though, gives me an <code>undefined</code> value even immediately after I set the property.</p> <pre><code>$("#mydiv").myprop = "some value"; alert($("#mydiv").myprop); </code></pre> <p>this code does not work either:</p> <pre><code>$("#mydiv")["myprop"] = "some value"; alert($("#mydiv").myprop); </code></pre> <p>Is there a way to achieve this? Or do I need to store all my properties as attributes on the DOM object via <code>$("#mydiv").attr("myprop", "some value")</code> (this is much less desirable).</p> <p>Thanks!</p> http://stackoverflow.com/questions/1194089/making-jquery-statements-shorter 0 Making jQuery statements shorter DanC 2009-07-28T13:26:01Z 2009-07-28T14:35:05Z <p>I have the following jQuery statement which works fine but I was wondering if it could be shortened and if making it more concise would speed up performance or not?</p> <p>The reason for the strange starting tag is that it is for a wordpress theme.</p> <p>Cheers in advance!</p> <pre><code>jQuery(document).ready(function($) { $(".sidebar ol#navigation li.work a").click(function() { $("#content #second_nav").toggle("fast"); $("#content #second_nav ul.options_3").css('display','none'); $("#content #second_nav ul.options_2").css('display','none'); $("#content #second_nav ul.options_4").css('display','none'); $('.active_2').removeClass('active_2'); $('.active').removeClass('active'); $(this).toggleClass('selected'); }); $("#content #second_nav ul.options li a#work").click(function() { $('.active').removeClass('active'); $(this).attr('class','active'); $("#content #second_nav ul.options_2").toggle("fast"); $("#content #second_nav ul.options_4").css('display','none'); $("#content #second_nav ul.options_3").css('display','none'); }); $("#content #second_nav ul.options li a#writing").click(function() { $('.active').removeClass('active'); $(this).attr('class','active'); $("#content #second_nav ul.options_4").toggle("fast"); $("#content #second_nav ul.options_3").css('display','none'); $("#content #second_nav ul.options_2").css('display','none'); $('.active_2').removeClass('active_2'); }); $("#content #second_nav ul.options_2 li a#collage").click(function() { $('.active_2').removeClass('active_2'); $('ul.options_3').css('display','none'); $(this).attr('class','active_2'); $("#content #second_nav ul.options_3#collage").toggle("fast"); }); $("#content #second_nav ul.options_2 li a#painting").click(function() { $('.active_2').removeClass('active_2'); $('ul.options_3').css('display','none'); $(this).attr('class','active_2'); $("#content #second_nav ul.options_3#painting").toggle("fast"); }); $("#content #second_nav ul.options_2 li a#print").click(function() { $('.active_2').removeClass('active_2'); $('ul.options_3').css('display','none'); $(this).attr('class','active_2'); $("#content #second_nav ul.options_3#print").toggle("fast"); }); $("#content #second_nav ul.options_2 li a#photo").click(function() { $('.active_2').removeClass('active_2'); $('ul.options_3').css('display','none'); $(this).attr('class','active_2'); $("#content #second_nav ul.options_3#photo").toggle("fast"); }); }); </code></pre> http://stackoverflow.com/questions/477463/jquery-is-waiting-for-images-to-load-before-executing-document-ready 33 JQuery is waiting for images to load before executing document.ready Simon 2009-01-25T10:11:26Z 2009-07-20T21:53:12Z <p><b>Update:</b> This bug has been confirmed by at least two others. Even if you dont read my full post - if you're reading this and using JQuery 1.3.1 then <strong>stop using it</strong> if you're relying on any handlers that you want to execute when the DOM is complete but before the page's images have loaded.</p> <p><strong>Update2</strong>: Thanks to <a href="http://stackoverflow.com/users/20/tom">Tom</a> (user id 20!) for posting the <a href="http://dev.jquery.com/ticket/3988#preview" rel="nofollow">link to the ticket</a> on the jQuery bug tracker. </p> <p><strong>Update3 - 2009/01/28:</strong> The issue has been properly resolved (for those for whom reverting to 1.2.6 is not an option). For anyone currently using 1.3.1 and needing an immediate fix you can read the accepted answer below for direction. Thanks John.</p> <p><hr></p> <p>I just upgraded to JQuery 1.3.1, and it took me several hours to realize that my beloved </p> <pre><code>$(function( ) { ... } </code></pre> <p>syntax was now waiting for the entire page to load (including images) before executing the function body. I was seeing <a href="http://stackoverflow.com/questions/477348/">strange behavior</a> when trying to integrate Yahoo's menus. (Fortunately I had some slow loading images on my page which made me aware of the problem)!</p> <p>I made a test file becasue I figured something more complex was going on, but I still had the same symptoms even with this simple file.</p> <pre><code>&lt;head&gt; &lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js"&gt;&lt;/script&gt; &lt;script&gt; $(function() { alert("Ready"); }); &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;img src="&lt;PATH_TO_DYNAMIC_IMAGE&gt;_1.jpg" /&gt; &lt;img src="&lt;PATH_TO_DYNAMIC_IMAGE&gt;_2.jpg" /&gt; &lt;img src="&lt;PATH_TO_DYNAMIC_IMAGE&gt;_3.jpg" /&gt; &lt;img src="&lt;PATH_TO_DYNAMIC_IMAGE&gt;_4.jpg" /&gt; &lt;/body&gt; </code></pre> <p>Different versions of JQuery had different results:</p> <ul> <li>What happens in version 1.2.6 is that alert box is shown instantly and then I see the images loading behind it (expected and documented behavior).</li> <li>What happens in version 1.3.1 is that the images all load and only then will the alert box be shown.</li> </ul> <p>Whats going on! Is this a new feature (I cant imagine why) or a bug?</p> <p><strong>Important: This only seems to be an issue in IE and not firefox</strong></p> <p><em>Sorry I dont have a dynamic image file that is publically accessible to make it easier for others to see this. If you want to test it out I suggest using a large image file picked randomly from google images and clear your cache.</em></p> http://stackoverflow.com/questions/709713/jquery-1-3-2-vsdoc-does-not-produce-visual-studio-intellisense 4 JQuery 1.3.2 vsdoc does not produce Visual Studio intellisense bugBurger 2009-04-02T13:28:50Z 2009-07-20T17:48:28Z <p>In past i have worked with JQuery 1.2 vsdoc file which generates intellisense for vs2008 sp1.</p> <p>I have recently downloaded latest version of JQuery 1.3.2 and JQuery 1.3.2 vsdoc file. When i tried to get intellisense for jquery in vs2008 - I am getting following error-</p> <p>Warning 1 Error updating JScript IntelliSense: C:\Documents and Settings\sonx3d\My Documents\Visual Studio 2008\Projects\WebApplication2\WebApplication2\jquery-1.3.2.js: Object doesn't support this property or method @ 2139:1 </p> <p>Can anyone help on this please ? </p> http://stackoverflow.com/questions/1145954/how-do-you-select-more-than-one-element-by-id 2 How do you select more than one element by id? yuval 2009-07-17T22:27:48Z 2009-07-17T22:43:33Z <p>Hi, I have two identical click events for two different elements that do not share a class, as such:</p> <pre><code>$("#element_1").click(function(){ alert("hello world"); }); $("#element_2").click(function(){ alert("hello world"); }); </code></pre> <p>I am looking for a way to assign that same click function to both of them without externalizing the function or repeating it (as seen above). If the elements shared the same class, I would have done something like this:</p> <pre><code>$(".element_class").click(function(){ alert("hello world"); }); </code></pre> <p>but they do not. How do I achieve something like that in jQuery 1.3?</p> <p>Thank you!</p> http://stackoverflow.com/questions/1024983/jquery-child-matching-too-much 0 jquery child matching too much? Jauder Ho 2009-06-21T23:12:00Z 2009-06-21T23:22:56Z <p>I am importing a feed into Tumblr and because of the formatting of the site, it shows too many pictures. So to fix that, I thought I would use jquery to remove extra elements. </p> <p>It turns out that the imported feed uses tables. No worries, I made a jquery call that seemed to work fine on an individual post. </p> <p>(Pardon the ugly match)</p> <pre><code>$('.copy div table tbody tr td div table tbody tr td:gt(3)').remove(); </code></pre> <p>This works swimmingly on <a href="http://apt.jauderho.com/post/127696762/aaman-lamba-hibiscus" rel="nofollow">http://apt.jauderho.com/post/127696762/aaman-lamba-hibiscus</a></p> <p>However, going to a page with more than one post, it looks like the second post is being treated as part of the first and hence all the pictures are removed due to the gt(3). My understanding was that using the fragment above, I would be able to iterate on each post leaving only 4 images max per post. See <a href="http://apt.jauderho.com/" rel="nofollow">http://apt.jauderho.com/</a></p> <p>Can anyone tell me what I'm missing? Thanks.</p> http://stackoverflow.com/questions/962633/is-there-an-automatic-jquery-plugin-updater 2 Is there an automatic jQuery plugin updater? patricksweeney 2009-06-07T19:36:19Z 2009-06-08T16:30:13Z <p>Is there some sort of utility available that will check my jQuery plugins and see if they are the latest version? I understand that there is not an easy way to check the version numbers automatically; but I wonder if anyone has taken a look at this. </p> http://stackoverflow.com/questions/912245/round-speedometer-with-jquery-css-in-a-browser 0 Round speedometer with Jquery / CSS in a browser dnndeveloper 2009-05-26T19:22:26Z 2009-05-26T21:25:21Z <p>I need to make a round object much like a speedometer (with moving needle inside indicating a value) in a browser. currently for all other items on this page iam using jquery. I rather not use flash as it needs to be ipod / iphone usable.</p> <p>Any experience others have had doing this is greatly appreciated.</p> http://stackoverflow.com/questions/456457/jquery-1-3-only-selecting-the-first-element 3 jQuery 1.3 only selecting the first element nickf 2009-01-19T03:32:28Z 2009-04-27T06:52:09Z <p>I'm not sure if this is a bug or just some crazy new thing in jQuery 1.3 that I'm unaware of, or if I've just gone crazy.</p> <p>I have a table with 11 checkboxes in it, and I can't select them all using jQuery 1.3:</p> <pre><code>// jQuery 1.2.6 $(".myTable").find(":checkbox"); // finds 11 elements // jQuery 1.3 $(".myTable").find(":checkbox"); // finds 1 element: the first checkbox $(":checkbox", $(".myTable")); // finds 1 element $('.myTable :checkbox')); // finds all 11 elements </code></pre> <p>The results are the same if I use <code>.find('*')</code>: it only picks the first element in 1.3, so it's nothing peculiar to <code>:checkbox</code>.</p> <p>On my own page, I can recreate this every time, but when I paste the (seemingly) relevant parts into JSBin, it works!</p> <p>The original page also has Mootools included, but I've been very careful with scoping and there weren't any issues with jQ 1.2.6, so I don't think that could be it. Any other ideas?</p> <p><em>And before anyone says it, using the <code>.find()</code> function is very much more convenient than the combined selector (<code>".myTable :checkbox"</code>) in this case, and changing all my code to that style isn't an option!</em></p> http://stackoverflow.com/questions/730586/jquery-add-html-and-event 0 JQuery Add HTML and Event Jon Archway 2009-04-08T15:42:05Z 2009-04-08T20:54:57Z <p>Hi,</p> <p>I currently have the following in JQuery 1.3.2</p> <pre><code>for (i = 0; i &lt; totalPages; i++) { var newDiv = $("&lt;a href=\"#\"&gt;").append(i+1).click(function() { alert(i+1); }); $('#pageLinks').append(newDiv).append(" "); } </code></pre> <p>This outputs a list of numbers as required, but the alert when clicking the generated element is returning the totalPages value, not the value of i during the loop. How do I get the click event to alert the value of i instead?</p> <p>Thanks</p> http://stackoverflow.com/questions/672582/waiting-before-do-action-use-jquery 0 waiting before do action use jquery 2009-03-23T08:49:23Z 2009-03-23T09:38:16Z <p>Hi everyone,</p> <p>I use jquery version 1.3.2,</p> <p>I want to use event "load" for load content of a page to "div".</p> <p>I used: $("#div1").load("page1.php"); ---> it worked. </p> <p>But i want before do event "load", it waiting about times.</p> <p>it same: $("#div1").load("page1.php",{after: 5});</p> <p>please tell me how to do, thank you very much...</p> http://stackoverflow.com/questions/635240/selecting-all-empty-text-fields-in-jquery 3 Selecting all empty text fields in Jquery ngz 2009-03-11T16:10:48Z 2009-03-11T22:49:15Z <p>How can I find all text fields that have an empty value?</p> <pre><code>$(":text[value='']") </code></pre> <p>gives a JavaScript error</p> <p>I know I can do <code>$(":text")</code>, iterate through and return all fields with <code>$(this).val()==''</code></p> <p>I am looking for a cleaner method and using JQuery 1.3.1 It has to work if the element originally had a value when the page was loaded, and then the user cleared it. (<code>$("#elem").attr('value')</code> gives the original value in that place, though .val() works properly)</p> http://stackoverflow.com/questions/605734/jquery-bind-several-functions-to-one-element 0 Jquery bind several functions to one element dynback.com 2009-03-03T09:34:10Z 2009-03-03T09:58:01Z <p>Strange, is there no possibility to put several binds in jquery, on one element?</p> <p>$('input').click(clickfn).click(clickfn)</p> <p>I am using 1.3.2</p> <pre><code>function clickme() { alert('click me') } $('.click', mod).bind("brrr", clickme).bind("brrr", clickme) .click(function() { $('.click', mod).trigger("brrr"); }); </code></pre> <p>This is not working also. Executes one time.</p> http://stackoverflow.com/questions/557389/change-height-in-jquery-only-working-once 0 Change height in jquery only working once wardy 2009-02-17T15:33:08Z 2009-02-18T13:42:44Z <p>I've got a set of product listings that each have a link below them with a click event on it, when this is clicked it goes to the parent class, finds the class "surf_prod1" below and slideToggles it. Where a function that checks through all divs with a class of "surf_prod" and gets the biggest innerHeight which is passed back and used as the height for all divs with class of "surf_prod".</p> <p>This works fins for the first click, however subsequent ones, have no effect, and only the initial height seems to have effect, not sure if this is due to some form of caching?</p> <p>Hopefully someone can help.</p> <p>Here's my html:</p> <pre><code>&lt;div class="surf_prod"&gt; &lt;img height="300" border="0" alt="7'2" - Egg" src="product_images/takayama_egg_7_2_egg_l0242_front.jpg"/&gt;&lt;br/&gt; &lt;span style="height: 35px;"&gt;&lt;b id="review1615"&gt;7'2" - Egg&lt;/b&gt;&lt;/span&gt;&lt;br/&gt; &lt;div valign="top" class="surf_prod1"&gt; &lt;p style="margin-bottom: 2px;"&gt;&lt;b&gt;N : &lt;/b&gt;16 1/4&lt;/p&gt; &lt;p style="margin-bottom: 2px;"&gt;&lt;b&gt;M : &lt;/b&gt;21 1/4&lt;/p&gt; &lt;p style="margin-bottom: 2px;"&gt;&lt;b&gt;T : &lt;/b&gt;14 3/4&lt;/p&gt; &lt;p style="margin-bottom: 2px;"&gt;&lt;b&gt;Th : &lt;/b&gt;2 3/8&lt;/p&gt; &lt;/div&gt; &lt;span style="margin: 0px;"&gt;&lt;b&gt;FINS&lt;/b&gt;&lt;/span&gt;&lt;br/&gt; &lt;div class="surf_prod1"&gt; &lt;p&gt;&lt;b&gt;Centre : &lt;/b&gt;US 8" TAK 4.5&lt;/p&gt; &lt;p&gt;&lt;b&gt;Side : &lt;/b&gt;FCS M5&lt;/p&gt; &lt;/div&gt; &lt;div class="review_box"&gt; &lt;a class="review_link" href="#review1615"&gt;&lt;b style="cursor: pointer; text-decoration: underline; color: rgb(204, 0, 0);" title="Click For Review"&gt;Board Review&lt;/b&gt;&lt;/a&gt; &lt;div style="text-align: left; display: none;" class="surf_prod1 review_body"&gt;If you're not quite ready to "rip and shred" on a short board, nor are you apt to "cruise" on a long board, then the Hawaiian Pro Designs Egg is the perfect solution. This model is an "eggy" looking shape that allows the rider to trim high on the wave in the middle of the board or race down the line on the tail, whichever the rider prefers. This board is also a perfect beginners board because of the overall forgiving shape that allows for a variety of mistakes without loss of speed or manoeuvrability.&lt;br/&gt;&lt;a href="http://www.surfcom.co.uk/app/content_prod/5/1615"&gt;&lt;b&gt;More&lt;/b&gt;&lt;/a&gt;&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> <p>and my JavaScript:</p> <pre><code>function equalHeight(group) { var tallest = 0; group.each(function() { thisHeight = $(this).innerHeight(true); if(thisHeight &gt; tallest) { tallest = thisHeight; } }); return tallest; } $(document).ready(function(){ $(".review_body").slideUp("fast"); $(".review_link").click(function(ev){ ev.preventDefault(); var link = $(this).attr('href'); //Get the review container to be able to manipulate the children of it $(this).parent(".review_box").find(".surf_prod1").slideToggle("fast", function(){ var surf_prod_height = equalHeight($("div.surf_prod")); $("div.surf_prod").height(surf_prod_height); document.location = link; }); }); }); </code></pre> <p>Example <a href="http://www.surfcom.co.uk/app/content_cat/4/64" rel="nofollow" title="here">here</a>.</p> http://stackoverflow.com/questions/534963/jquery-dialog-that-darkens-the-screen-like-the-link-dialog-does-here 1 jQuery dialog that darkens the screen like the link dialog does here cletus 2009-02-11T00:38:43Z 2009-02-12T14:31:54Z <p>I like the look of the link dialog here. It darkens the screen and is probably modal (although I haven't tested that I just assume it is). What's a quick and easy way of darkening the screen like that witha jQuery UI Dialog?</p> http://stackoverflow.com/questions/537860/jquery-event-target-error 0 JQuery event.target error balint 2009-02-11T17:25:36Z 2009-02-11T22:48:49Z <p>Hi, I've a box from divs (price_item) with several child divs (date, price etc.). I'm using it as a caroussel for showing prices. If one clicks on any child, the parent's background color must be changed to red. I wrote it like:</p> <pre><code>$(...selectquery...).click(function() { var $tgt = $(event.target); $tgt.parent().css("backgroundColor", "red"); }); </code></pre> <p>on Chrome, event.target is working as expected, on Firefox 3.0.1 it says "event is not defined". How can I work around this?</p> <p>I've tried the following:</p> <pre><code>$(this).parent().css() </code></pre> <p>it says <code>'object is not a function'</code></p> <p>thanks!</p>