active questions tagged selectors - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T11:04:43Zhttp://stackoverflow.com/feeds/tag/selectorshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1836697/jquery-apply-selector-to-every-field-in-a-dynamic-form0jQuery. Apply selector to every field in a dynamic formEnrique2009-12-02T23:47:16Z2009-12-03T00:01:53Z
<p>I have a form which is built dynamically using this jQuery plugin </p>
<pre><code>http://code.google.com/p/jquery-dynamic-form/
</code></pre>
<p>When I duplicate a <strong>div</strong>, all the fields in the <strong>div</strong> are duplicated, and -as plugin docs state- <strong>brackets</strong> are added to the field name</p>
<p>I use also jQueryUI. I use the datePicker plugin</p>
<pre><code>$("#myDynDateField").datepicker();
</code></pre>
<p>It works fine when there's only 1 instance of this datePicker field. When I duplicate the whole div, the datePicker field is also duplicated, and errors begin</p>
<pre><strong>
inst is undefined
uncaught exception: Missing instance data for this datepicker
</strong></pre>
<p>1) How can I use a jQuery selector that covers all the duplicated fields also?<br>
2) How can I make sure that every duplicated datePicker field will have its right instance, etc.?</p>
<p>Thanks a lot in advance,</p>
http://stackoverflow.com/questions/250688/count-immediate-child-div-elements-using-jquery5count immediate child div elements using jQueryDon2008-10-30T15:47:52Z2009-12-02T16:17:23Z
<p>Hi,</p>
<p>I have the following HTML node structure:</p>
<pre><code><div id="foo">
<div id="bar"></div>
<div id="baz">
<div id="biz">
</div>
<span><span>
</div>
</code></pre>
<p>How do I count the number of immediate children of "foo", that are of type "div". In the example above, the result should be two ("bar" and "baz").</p>
<p>Cheers,
Don</p>
http://stackoverflow.com/questions/1829174/stacking-css3-structural-pseudo-classes0Stacking CSS3 Structural pseudo-classesDustin Hansen2009-12-01T21:49:12Z2009-12-02T08:53:34Z
<p>While practicing different scenarios in which CSS3 pseudo-classes and selectors might come in handy, I ran across something I just can't figure out!</p>
<p>Here's the situation. I want to modify the <code>:first-of-type::first-letter</code> of the first non-empty paragraph for a block of text. I'm not sure that pseudo-classes can be stacked though. Here's what I've come up with (Doesn't work, of course)</p>
<pre><code>.article-body > p:not(:empty):first-of-type::first-letter { ... }
</code></pre>
<p>Given the following markup:</p>
<pre><code><div class="article-body">
<p></p>
<p>The "T" in this paragraph should be the one effected.</p>
</div>
</code></pre>
<p>The only guess I can come up with is that pseudo-classes (ie; :not() and :first-of-type) can not be stacked upon each other. Which is odd since you can stack pseudo-elements upon each other, and other pseudo-classes...</p>
<p>Any ideas for how this can be accomplished?!</p>
http://stackoverflow.com/questions/1829508/jquery-append-th-class-to-td-in-the-same-column1jQuery - Append <th> Class to <td> in the Same ColumnNorbert2009-12-01T22:52:01Z2009-12-01T23:31:50Z
<p>I've been searching all over the net for hours now but I still can't figure this out.</p>
<pre><code><table>
<tr>
<th class="name">Name</th>
<th class="age">Age</th>
<th class="nick">Nick</th>
</tr>
<tr>
<td>John</td>
<td>30</td>
<td>Johnny</td>
</tr>
<tr>
<td>Robert</td>
<td>35</td>
<td>Bob</td>
</tr>
</table>
</code></pre>
<p>Is there any way to append the classes from those headers to the TD tags in the same column?</p>
http://stackoverflow.com/questions/995433/jquery-selector0Jquery selectorJasim2009-06-15T10:37:40Z2009-12-01T03:21:47Z
<pre><code><a class='leftpanel_anchor' tag='solutions' href='javascript:void(0)' > Solutions to <span class='leftpanel_keywords'>firstConResult</span></a>
</code></pre>
<p>i have an anchor like this. i want to select the content inside span class 'leftpanel_keywords'. how can i do that with jquery???</p>
http://stackoverflow.com/questions/1411143/jquery-selector-performance2jQuery selector performanceJonoW2009-09-11T14:15:34Z2009-11-30T21:51:23Z
<p>I'm having huge variations in performance depending on how I express my selectors. For example, look at these 2 selectors, which select exactly the same elements:</p>
<pre><code>A) someTableRow.find("td.someColumnClass").find("span.editMode").find("input")
B) someTableRow.find("td.someColumnClass span.editMode input")
</code></pre>
<p>I would expect to B) to be faster as there is only 1 call, but in fact I'm finding A) executes around 8 times faster. I have no idea why, anyone have any insight? Thanks</p>
http://stackoverflow.com/questions/1817407/tips-to-reference-dom-elements-working-with-jquery0Tips to reference DOM Elements working with jQueryOmar2009-11-30T01:06:16Z2009-11-30T12:20:14Z
<p>Need some Advice on how to reference elements with jQuery (DOM/Traversing/Selectors).
Sometimes its just enough to set an id at the desired element and do this:</p>
<pre><code>$('#elementID').hide();
</code></pre>
<p>But sometimes it just cant be used, for example when working with list of n elements, i have seen some people attach a class to each element of the list like:</p>
<pre><code><a class="selectMe" href="http://jquery.com/">jQuery1</a>
<a class="selectMe" href="http://jquery.com/">jQuery2</a>
<a class="selectMe" href="http://jquery.com/">jQuery2</a>
</code></pre>
<p>And then do this with jQuery:</p>
<pre><code>$('.selectMe').hide();
</code></pre>
<p>Some other do the same but with rel attribute and so on..</p>
<p>Some other people do this so generic that is scary, if this is the scenario:</p>
<pre><code><div id="MyID">
<span>Some Text Here</span><a href="http://jquery.com/">jQuery1</a>
</div>
</code></pre>
<p>If i Want to attach an event to the anchor:</p>
<pre><code>$('#MyID a').show();
</code></pre>
<p>Like assuming that there will be just 1 link inside that DIV.</p>
<p>What you guys think it really depends totally on the scenario or there are some good practices to do this.</p>
http://stackoverflow.com/questions/1818382/return-type-of-input-with-jquery0return type of input with jquerykris2009-11-30T07:50:35Z2009-11-30T08:37:50Z
<p>I have a form with dynamically created form elements.</p>
<p>I need to get the value of each element, and send an ajax request to make sure the data is ok (the easy part). I can get each elements value easy enough, but the problem comes in with radio buttons. For example:</p>
<pre><code><input type = 'radio' class = 'form_element' value = '1'>
<input type = 'radio' class = 'form_element' value = '1'>
<input type = 'radio' class = 'form_element' value = '1'>
</code></pre>
<p>if i do something like...</p>
<pre><code>$('.form_element').each(function(){
alert($(this).val());
});
</code></pre>
<p>it will print the values of all of the radio buttons, regardless if it is checked or not.</p>
<p>I need it to only return the value of the one that is checked.</p>
<p>So, is there a way to return the type of an input element from jquery? </p>
http://stackoverflow.com/questions/1817792/css-previous-sibling-selector0CSS previous sibling selectorJourkey2009-11-30T04:06:36Z2009-11-30T04:29:38Z
<p><code>~</code> is for the next sibling. Is there an equivalent for the previous sibling? </p>
<p>If there is not, a succinct no would suffice. :)</p>
http://stackoverflow.com/questions/54877/jquery-after-selector-question3jQuery "after" selector questionChris Farmer2008-09-10T18:03:12Z2009-11-30T02:08:09Z
<p>I can't seem to figure out a good way to do this, but it seems like it should be simple. I have an element that I want to append a div to. Then I have another element that I want to clone and shove into that intermediate div. Here's what I was hoping to do:</p>
<pre><code>$("#somediv > ul").after("<div id='xxx'></div>").append($("#someotherdiv").clone());
</code></pre>
<p>This seems to be close, but not quite there. The problem with this is that the "append" seems to be operating on the original "#somediv > ul" selector. This sort of makes sense, but it's not what I wanted. How can I most efficiently select that intermediate div that I added with the "after" and put my "#someotherdiv" into it?</p>
http://stackoverflow.com/questions/1817444/prototype-how-to-dynamically-construct-selector0Prototype: how to dynamically construct selector?frodosghost2009-11-30T01:25:23Z2009-11-30T01:58:47Z
<p>I am having a little bit of difficulty passing a variable into a selector in prototype. I would like to be able to pass a variable into the select string, so that one function can work for many of the same kind.</p>
<p>At the moment, this is what I would basically like to do:</p>
<pre><code>function myFunct(var)
{
$(var + 'add_form').hide() //so inde the brackets would be ('#product1 #add_form') for example.
}
</code></pre>
<p>Be able to pass 'var' into the function that would pass it to the selector, so that I can hide a pattern that is the same for many on the page.</p>
<p>Any ideas for a path to follow would be greatly appreciated.</p>
http://stackoverflow.com/questions/940752/jquery-selectors-finding-a-child-of-the-root-node0jquery selectors -- finding a child of the root nodemorgancodes2009-06-02T17:16:21Z2009-11-30T01:53:16Z
<p>It seems that this should be simple, but I'm having trouble figuring out how to construct a selector that will return only elements that are a direct child of a root node.</p>
<p>If, for example, I have a reference to a div (myDiv), and I want to select only images that are direct children of that div, the following doesn't work:</p>
<pre><code>jQuery("div > img", myDiv);
</code></pre>
<p>The "div" in the selector doesn't seem to match the root of the context, only descendants, and without a selector that will give me the root, I can't use ">". Any other ideas on how to select a direct child of a context root?</p>
http://stackoverflow.com/questions/1218068/what-is-the-difference-between-jquerys-space-and-selectors2What is the difference between jQuery's space and > selectors?Eliyahu2009-08-02T03:19:01Z2009-11-30T01:49:09Z
<p>What's the difference between the <a href="http://docs.jquery.com/Selectors/descendant#ancestordescendant" rel="nofollow">space</a> and <a href="http://docs.jquery.com/Selectors/child" rel="nofollow">></a> selectors? And possibly related, how can I look for something that's the direct child of something else, and not lower down the descendant line?</p>
http://stackoverflow.com/questions/1814217/nscfset-objectatindex-unrecognized-selector-iterating-works0NSCFSet objectAtIndex unrecognized selector, iterating works.Nick2009-11-29T00:08:35Z2009-11-29T00:15:19Z
<p>Hey guys,</p>
<p>I was wondering how it can be that iterating through an NSMutableArray works, but when I call objectAtIndex it fails with "*** -[NSCFSet objectAtIndex:]: unrecognized selector sent to instance 0x..."</p>
<p>Here is some sample code, the program is too big to share in whole so I hope it's enough. The code is executed in the latest iPhone Simulator from XCode. </p>
<pre><code>- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
RDLogString(@"Creating cell @ row no. %d", indexPath.row);
CPPlayerAppDelegate * appDelegate = [[UIApplication sharedApplication] delegate];
RDLogString(@"Conversations: %p. Item count: %d", appDelegate.distribution.conversations, appDelegate.distribution.conversations.count);
//This works
for(CPConversation * x in appDelegate.distribution.conversations){
RDLogString(@"Pointer: %p with name %@", x, x.name);
}
//This fails with aforementioned error
CPConversation * conversationAtCurrentIndex = [appDelegate.distribution.conversations objectAtIndex: indexPath.row];
</code></pre>
<p>Sorry for the bad formatting, still figuring it out. :)</p>
<p>Thanks in advance,
Nick</p>
http://stackoverflow.com/questions/1811786/jquery-syntax-question-ul-as-variable-remove-item0jQuery syntax question : ul as variable, remove item?Pselus2009-11-28T06:37:29Z2009-11-28T06:45:17Z
<p>This is a simple syntax question.</p>
<p>I have a ul saved as a variable like this:</p>
<pre><code>$list = $("#city_list");
</code></pre>
<p>I am later removing some items from the list with this code:</p>
<pre><code>$('ul#city_list li#city_' + $id).remove();
</code></pre>
<p>How can I do that using the $list variable I created earlier so that I get something like this:</p>
<pre><code>$list.('li#city_' + $id).remove();
</code></pre>
http://stackoverflow.com/questions/1806445/cancelling-queued-performselectorafterdelay-calls0cancelling queued performSelector:afterDelay callseerok5122009-11-27T01:51:38Z2009-11-27T02:47:31Z
<p>hey there all, does anybody know if it is possible to cancel already queued selector events from the event stack or timer stack or whatever mechanism it is that is utilized by the API when you call performSelector:withObject:afterDelay?</p>
<p>I was using this event stack to alter the attributes of an image within a TabBar tab, and would sometimes queue up to 10 seconds worth of changes in one quickly executed for loop... maybe 5 milliseconds or so.</p>
<p>the problem arises if the user switches tabs... like say I have the image alterations queued for an image that is displayed as soon as Tab #4 is enabled, and then the user quickly switches to Tab #3 and then right back to Tab #4... this would then re-queue another 10 seconds worth of alterations while the old queue was still playing, probably around 2 or 3 seconds in to the queue if switched quick enough... but even arriving at 5 seconds in to the stream was a problem.</p>
<p>so I needed some way to cancel the old stack of changes before putting a new stack on...</p>
<p>I'm writing this query in the past tense because I already came up with an alternative solution to this problem by adding a hawk-eyed event filter on the playback function. however I am still curious if event cancellation is possible, because I have a feeling such knowledge will come in handy in the future. thank you for any assistance rendered :)</p>
http://stackoverflow.com/questions/902839/jquery-select-divs-with-same-id1jquery select divs with same idmark2009-05-24T01:16:53Z2009-11-26T18:48:04Z
<p>hei guys
i want to select two divs with the same id in jquery. how do i do it?</p>
<p>i tried this and it did not work</p>
<pre><code>jQuery('#xx').each(function(ind,obj){
//do stuff;
});
</code></pre>
<p>i have jquery countdown timers in a page, and i update them via ajax. some of these countdown timers repeat and that is why i need to use the same id on the divs.</p>
http://stackoverflow.com/questions/1802053/looping-through-set-of-elements-in-jquery0looping through set of elements in jqueryunknown (google)2009-11-26T07:23:26Z2009-11-26T07:38:48Z
<p>Hi,
$('form td .hint p') this jquery selector returns back a list [p,p,p,p,p,p].</p>
<p>I would like to know what's the best way to loop through each of those, check their css values, and do something if the css value = something I want.</p>
<p>I have this function to show and hide a tooltip, but I only want one tooltip to be shown at a time. While doing mouseover and mouseout works, it's buggy because currently I'm using parent(), next(), and child(), to find the right element, and jquery instantaneously inserts a div wrapping around the element I'm showing and hiding. So basically I'm trying to force all other p elements that have display:block to hide every time mouseover occurs.</p>
<p>Currently doing this:
target = $('form td .hint p');
target[0].css('display') gives an error.</p>
<p>target.css('display') seems to only return the css of the first one.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1796479/zend-framework-forms-and-jquery-selectors-how-to-select-by-id1Zend framework forms and jQuery selectors - how to select by... ID?rochal2009-11-25T11:55:49Z2009-11-25T12:04:27Z
<p>So I've got this issue with forms generated by Zend Framework.</p>
<p>As we know Zend is using this format for ID of HTML elements, i.e: <code>contactDetails[name]</code>,<code>contactDetails[email]</code> etc.</p>
<p>First of all, why Zend is using <em>invalid</em> HTML to generate forms? There should be no brackets <code>[]</code> inside ids, according to <a href="http://www.w3.org/TR/html401/types.html#type-name" rel="nofollow">W3C</a>:</p>
<blockquote>
<p>ID and NAME tokens must begin with a
letter ([A-Za-z]) and may be followed
by any number of letters, digits
([0-9]), hyphens ("-"), underscores
("_"), colons (":"), and periods
(".").</p>
</blockquote>
<p>But the real issue I have is <strong>how to correctly select element by id using jQuery, if we must deal with invalid, Zend generated ids</strong>?</p>
<p>In standard JavaScript this seems to work: <code>document.getElementById('contactDetails[email]')</code>.</p>
<p>But in jQuery: <code>$('#contactDetails[email]')</code> - this is obviously wrong, as brackets are reserved for attribute selectors.</p>
<p>The easy workaround I found is to wrap native-js-selected object in $() function:
<code>$(document.getElementById('contactDetails[email]'))</code>. Using this method I can use all jQuery functions on this object, but this seems like a hacky solution...?</p>
http://stackoverflow.com/questions/1793216/css-selector-syntax0CSS Selector SyntaxByran2009-11-24T21:58:11Z2009-11-24T22:14:10Z
<p>For this HTML:</p>
<pre><code><div id="idName" class="className">
...
</div>
</code></pre>
<p>I know this is correct selector syntax:</p>
<pre><code>div.className {...}
div#idName {...}
</code></pre>
<p>By mistake I did:</p>
<pre><code>#idName.className {...}
</code></pre>
<p>It seams to work but I don't think it's valid. Can anyone confirm if this is valid?</p>
<h2>Edit:</h2>
<p>To clarify, this id will be on many pages and, depending on the use of the page, may have different classes.<br>
Page A:</p>
<pre><code>#content.one-column {...}
</code></pre>
<p>Page B:</p>
<pre><code>#content.two-column {...}
</code></pre>
http://stackoverflow.com/questions/1791715/css-selector-problem2Css Selector problemAdam2009-11-24T17:42:07Z2009-11-24T17:45:38Z
<p>How do I do a css selector that selects a div that has the class of "someButton" AND "current"?</p>
<pre><code>.someButton .current { /* select current with the parent div of .someButton, correct? */
</code></pre>
<p>Please help me figure this out!</p>
http://stackoverflow.com/questions/996644/jquery-selector-cant-read-from-hidden-field0jquery selector can't read from hidden fieldAndy2009-06-15T15:07:42Z2009-11-24T13:04:54Z
<p>(<a href="http://stackoverflow.com/questions/997296/jquery-hidden-field-not-accessible-until-document-ready-called">answers aggregated into another question</a>)</p>
<p>The following jquery 1.3.2 code works:</p>
<pre><code><input type="select" value="236434" id="ixd" name='ixd' />
<script>
console.log( $('#ixd') );
console.log( $("input[name='ixd']") );
</script>
</code></pre>
<p>Console shows:</p>
<blockquote>
<p>[input#ixd 236434] </p>
<p>[input#ixd 236434]</p>
</blockquote>
<p>However setting the input to "hidden" prevents the selectors working. Any clues?</p>
<pre><code><input type="hidden" value="236434" id="ixd" name='ixd' />
<script>
console.log( $('#ixd') );
console.log( $("input[name='ixd']") );
</script>
</code></pre>
<p>Console shows:</p>
<blockquote>
<p>[]</p>
<p>[]</p>
</blockquote>
http://stackoverflow.com/questions/1788203/jquery-selection-of-elements-created-run-time0jQuery Selection of elements created run timeAjay2009-11-24T06:24:29Z2009-11-24T06:47:41Z
<p>I have the following scenario:</p>
<p>I have a <code>div = "#div1"</code> which is coded in html. I have populated this div with some data coming from a script service [ which means the "a's" are not there initially], and the data is appended to this div as </p>
<pre><code><a href=''>data1</a>
<a href=''>data2</a>
</code></pre>
<p>I have a jQuery selector like :</p>
<pre><code>$(document).ready(function(){
$("#div1 a").click(function(){
// do something
});
});
</code></pre>
<p>This is not selecting the element. How do I overcome this problem?</p>
http://stackoverflow.com/questions/1788276/i-want-a-function-to-be-fired-whenever-one-option-of-a-radio-element-is-checked0I want a function to be fired whenever one option of a radio element is checked. How to do it using Jquery?Steven2009-11-24T06:41:51Z2009-11-24T06:47:27Z
<p>There are many input radio elements on a web page and each radio element has several options. I want a function to be fired whenever one option of a radio element is checked. How to write the code using Jquery?
One input element looks as follows:</p>
<pre><code><div class="below">
<input type="radio" value="information" name="option0"/>
information
<input type="radio" value="communication" name="option0"/>
communication
<input type="radio" value="goods" name="option0"/>
goods
<input type="radio" value="attention" name="option0"/>
attention
</div>
</code></pre>
<p>I wrote the code as follows:</p>
<pre><code>$(":radio").checked(function() {
alert(this.value);
});
</code></pre>
<p>But it doesn't work. How to do it?</p>
http://stackoverflow.com/questions/1780620/is-it-possible-to-define-an-anonymous-selector-in-objective-c3Is it possible to define an anonymous selector in Objective-C?Ben S2009-11-23T00:50:44Z2009-11-23T00:58:09Z
<p>I'd like to be able to define an inline anonymous selector that a selector wherever a selector is needed as an argument.</p>
<p>Is this possible, or do I have to just suck it up and define a method?</p>
<p><strong><em>Background</strong>: In my iPhone application I need to update my UI from another thread. To do this I use <code>performSelectorOnMainThread:withObject:waitUntilDone:</code> However, I'd like to be able to get this functionality without having to define a whole other method.</em></p>
http://stackoverflow.com/questions/1774470/how-can-i-refer-to-the-calling-element-in-jquery2How can I refer to the calling element in JQuery?Steven2009-11-21T04:02:25Z2009-11-21T04:14:12Z
<p>For example:</p>
<pre><code><input type="text" size="5" id="question'+$qid+'"onKeyUp="checkanswer('+i+')"/></div>
</code></pre>
<p>I want to refer to the <code>"question'+$qid+'"</code> element inside the function checkanswer(), how to do it?</p>
<p>Maybe I can do it by <code>onKeyUp="checkanswer('+$qid+')"</code>, is there other elegant way to do it?</p>
http://stackoverflow.com/questions/1767469/how-do-i-select-a-group-of-child-elements-from-a-parent-element-of-a-particular-c0How do I select a group of child elements from a parent element of a particular class?Robert Harvey2009-11-19T23:56:09Z2009-11-19T23:58:36Z
<p>If I have a table as in this example:</p>
<pre><code><table class="detailView">
<tr>
<td>Value1</td>
<td>value2</td>
</tr>
</table>
</code></pre>
<p>How do I style the <code><tr></code> and <code><td></code> elements <strong>only if the table is of</strong> <code>class="detailView"</code>?</p>
http://stackoverflow.com/questions/1765042/jquery-how-to-target-very-specific-selectors1jQuery, How to target very specific selectors?Jeff2009-11-19T17:22:43Z2009-11-19T17:24:42Z
<p>Apologies if this has been asked already, I can't find the answer in the <a href="http://docs.jquery.com/" rel="nofollow">jQuery docs</a>.</p>
<p>How would I select all <code>.tooltip</code> classes which have a <code>[title]</code> attribute, and the <code>[title]</code> attribute is not empty?</p>
<p>In other words, select these:</p>
<pre><code><a href="#" class="tooltip" title="YES">Foo</a>
<span class="tooltip" title="YES">Bar</span>
</code></pre>
<p>But not these:</p>
<pre><code><a href="#" class="tooltip" title="">Empty title attribute.</a>
<span class="tooltip">No title attribute.</span>
</code></pre>
http://stackoverflow.com/questions/1758302/in-jquery-how-can-i-select-different-elements-by-the-name-attribute0In jQuery, how can I select different elements by the name attribute?BrianH2009-11-18T19:06:01Z2009-11-18T19:16:31Z
<p>I am trying to loop through some elements in a form (radios, text boxes, and select boxes) and get the value from each element. I am looping through by the name of each element (I don't think I can use ID because a group of radio buttons all have different IDs, but all have the same name).</p>
<p>Here are 2 selectors that encompass all the elements I need:</p>
<pre><code>$("input[name=" + prop + "]")
$("select[name=" + prop + "]")
</code></pre>
<p>where prop is the loop iterator.</p>
<p>I want perform the same operation on both selectors, so I tried to combine them:</p>
<pre><code>$("input[name=" + prop + "]", "select[name=" + prop + "]")
</code></pre>
<p>But that didn't work.</p>
<p>Is there a way to combine a search for both input elements and select elements in one selector?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1749540/selecting-one-element-with-multiple-selectors-in-jquery0Selecting one element with multiple selectors in JqueryThorbjørn Reimann-Andersen2009-11-17T15:13:24Z2009-11-18T14:42:41Z
<p>Hi All,</p>
<p>Im kinda new to Jquery, so this might be easy, then again i cant seem to find anything on Google. So here goes.</p>
<p>I basically have this:</p>
<pre><code><div>
<div id="row1" class="col1" onMouseOver="OnMouseOver(11)">
I dont want to select this
</div>
<div id="row1" class="col2" onMouseOver="OnMouseOver(12)">
I want to select this
</div>
<div id="row2" class="col1" onMouseOver="OnMouseOver(21)">
I dont want to select this
</div>
<div id="row2" class="col2" onMouseOver="OnMouseOver(22)">
I dont want to select this
</div>
</div>
</code></pre>
<p>and i want to select just the one div(eg. #row1 .col2) to change the css background image, but i cant get it to work.
As it is i have a switch/case block that chooses which div to select.</p>
<p>i have tried different variaties of this selection:</p>
<pre><code>$('#row1').find(".col1").css('background-image', 'url(Images/LosCol1Over.png)')
</code></pre>
<p>also</p>
<pre><code>$('#row1','.col2').css('background-image','url(Images/LosCol1Over.png)')
</code></pre>
<p>and several other combi i can remember</p>
<p>I think the problem is compounded(or confounded maybe :D) by the fact that the columns have the same background-image and this is set in the css by</p>
<pre><code>.col1{
background-image: url(Images/LosCol1.png)
}
.col2{
background-image: url(Images/LosCol1.png)
}
</code></pre>
<p>Any ideas?</p>