active questions tagged selector - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T09:01:17Zhttp://stackoverflow.com/feeds/tag/selectorhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1846228/jquery-using-variables-in-selectors0jQuery: Using Variables in SelectorsNorbert2009-12-04T10:55:22Z2009-12-04T11:41:58Z
<p>Every searches I made only included solutions for variables like this: $('#div'+ id)</p>
<p>I need to delete a row.</p>
<pre><code>var row = $(this).parent().parent().parent().find('tr#' + id).html();
</code></pre>
<p>I'd like to use the "row" name instead of "$(this)...remove();"</p>
http://stackoverflow.com/questions/1827482/jquery-find-next-prev-elements-of-a-certain-class-but-not-necessarily-siblings0Jquery find next/prev elements of a certain class but not necessarily siblingsGnuffo12009-12-01T16:52:55Z2009-12-03T06:11:43Z
<p>The next, prev, nextAll and prevAll methods are very useful, but not if the elements you are trying to find are not in the same parent element. What I want to do is something like this:</p>
<pre><code><div><span id="click">hello</span></div>
<div><p class="find">world></p></div>
</code></pre>
<p>When the span with the id "click" is pressed, I want to match the next element with the class "find", which in this case is not a sibling of the clicked element so next or nextAll won't work.</p>
http://stackoverflow.com/questions/1834049/jquery-custom-selector-with-colon0jquery custom selector with colonk0ni2009-12-02T16:24:27Z2009-12-03T05:59:05Z
<p>I need a function to select all elements with a custom attribute, and take its name and value. for example:</p>
<pre><code><input type="text" my:name="koni" my:age="20" my:city="New York" />
</code></pre>
<p>Note that my is always the same, but that behind not. in my function i then want to say:</p>
<pre><code>var attr = //here should be the attribute (attr, or attr2)
</code></pre>
<p>and</p>
<pre><code>var value = //here should be the value (test, or hello)
</code></pre>
<p>how can i make that?</p>
<p>Edit: sorry, forgot to paste the html.</p>
<p>i want to loop throu each input that has such custom my attributes, and get the value and the key in an array. for this example, i should have:</p>
<p>key = name,
value = koni</p>
<p>and</p>
<p>key = age,
value = 20</p>
<p>...</p>
http://stackoverflow.com/questions/1806190/jquery-selector-question-parent2jQuery: selector question (parent)Fuxi2009-11-26T23:58:07Z2009-11-27T00:00:28Z
<p>hi all,</p>
<p>i'm having this markup:</p>
<pre><code><ul class=container>
<li rec=1>
<div>
<div>
<div>i'm here</div>
</div>
</div>
</li>
</ul>
</code></pre>
<p>now i'm at the div element ("i'm here"), how can i get reference to the li?
i tried <code>div.parent("li");</code> but didntwork ..</p>
http://stackoverflow.com/questions/1797205/jquery-get-certain-element-from-selector2jQuery: get certain element from selectorFuxi2009-11-25T14:22:28Z2009-11-25T14:26:27Z
<p>i searched the docs and couldnt find it :(</p>
<p>let's say i'm selecting all elements like:</p>
<pre><code>var items = $(".myClass");
</code></pre>
<p>it returns eg. 5 items - now how can i grab select eg. the 2nd one?
items(2) or items[2] doesnt work ..</p>
http://stackoverflow.com/questions/1792075/another-jquery-not-selector-question0Another jquery :not selector question....yonation2009-11-24T18:44:20Z2009-11-24T18:49:55Z
<p>The :not always gives me such headache. I am trying to not repeat an addition of plus sign. This is the selector that gives me the element I want:</p>
<pre><code>#submenu li.current_page_ancestor.current_page_parent a:first
</code></pre>
<p><strong>Basically I want to say that if that selector does NOT already have a plus in front of it, add it</strong>. But where do i put the :not and the various contains? I've tried this, which didn't work:</p>
<pre><code>$j('#submenu li.current_page_ancestor.current_page_parent a:first:not('contains("+")')).prepend("+ ");
</code></pre>
<p>thanks so much! (also, if anyone can recommend a way to not use :not, and use ! instead, that would be spectacular!)</p>
http://stackoverflow.com/questions/1592855/cucumber-webrat-follow-link-by-css-class2Cucumber/Webrat: follow link by CSS class?Joe2009-10-20T06:48:58Z2009-11-24T17:35:13Z
<p>Hello there,</p>
<p>is it possible to follow a link by it's class name instead of the id, text or title? Given I have (haha, cucumber insider he?) the following html code:</p>
<pre><code><div id="some_information_container">
<a href="edit" class="edit_button">Translation here</a>
</div>
</code></pre>
<ul>
<li>I do not want to match by text because I'd have to care about the translation values in my tests</li>
<li>I want to have my buttons look all the same style, so I will use the CSS class.</li>
<li>I don't want to assign a id to every single link, because some of them are perfectly identified through the container and the link class</li>
</ul>
<p>Is there anything I missed in Cucumber/Webrat? Or do you have some advices to solve this in a better way?</p>
<p>Thanks for your help and best regards,</p>
<p>Joe</p>
<p><strong>edit:</strong> I found an interesting discussion going on about this topic right <a href="https://webrat.lighthouseapp.com/projects/10503/tickets/195-click%5Flink-using-title-and-classes" rel="nofollow">here</a> - seems to remain an open issue for now. Do you have any other solutions for this?</p>
http://stackoverflow.com/questions/1775176/jquery-selector-question0jQuery selector questionandreeib2009-11-21T11:09:06Z2009-11-23T12:15:04Z
<p>Hi,</p>
<p>I have a unordered list like the one below:</p>
<pre><code><ul id="tabs">
<li><a href="#tab1">latest news</a></li>
<li class="active"><a href="#tab2">latest posts</a></li>
<li><a href="#tab3">latest posts</a></li>
<li><a href="#tab4">latest posts</a></li>
</ul>
</code></pre>
<p>I can't find a jQuery selector that gets the next list item from the one whith the .active class, so if .active is the second one the jQuery selector will give me the third list item.</p>
<p>Thank's</p>
http://stackoverflow.com/questions/1580635/c-html-css-selector0C# html/css selectorDave2009-10-16T21:51:57Z2009-11-19T14:53:37Z
<p>Hello,</p>
<p>I'm wondering if there's a jQuery-like css selector that can be used in C#.</p>
<p>Currently, I'm parsing some html strings using regex and thought it would be much nicer to have something like the css selector in jQuery to match my desired elements.</p>
<p>Let me know if I'm not too clear on the subject.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1399064/using-jquery-how-to-find-out-if-css-selector-inputtypetext-is-natively-supp3Using jQuery, how to find out if CSS selector "input[type=text]" is natively supported by browser?Jesper Rønn-Jensen2009-09-09T11:19:48Z2009-11-18T20:58:02Z
<p>In my CSS I have a rule that must be applied to all text fields (using the CSS3 selector <code>input[type=text]</code>.</p>
<p>I also use <a href="http://en.wikipedia.org/wiki/JQuery" rel="nofollow">jQuery</a>. Some browsers like Internet Explorer 6 does not support that form for CSS selector. So my workaround is to add an extra classname in CSS:</p>
<pre><code>input[type=text], .workaround_classname{
/* css styling goes here */
}
</code></pre>
<p>And via jQuery then add the CSS class:</p>
<pre><code>$('input[type=text]').addClass('workaround_classname');
</code></pre>
<p>The Question is: How do I make sure this rule only is invoked when CSS3 selectors are not natively supported?</p>
http://stackoverflow.com/questions/1730609/using-jquery-not-selector-to-exclude-elements-with-particular-children1using jQuery NOT selector to exclude elements with particular children.DA2009-11-13T17:05:16Z2009-11-13T18:28:29Z
<p>I have a function that appends some HTML to an element. It may get called more than once, so I only want it to append the HTML to elements that haven't already had the HTML added.</p>
<p>Example:</p>
<pre><code><div class="divToAppendTo"></div>
<div class="divToAppendTo"><span class="myAppendedMarkup"></span></div>
</code></pre>
<p>As such, I'd like to select all .divToAppendTo that don't have an immediate child of .myAppendedMarkup</p>
<p>My stab at it doesn't seem to work:</p>
<pre><code>$(".divToAppendTo:not(>span.myAppendedMarkup)")
</code></pre>
<p>It always appends when I call it (thereby duplicating the content). </p>
http://stackoverflow.com/questions/1590282/fbml-multi-friend-selector-in-fbdialog0FBML multi friend selector in fb:dialogJugs2009-10-19T18:22:42Z2009-11-11T20:02:09Z
<p>Hey Guys,</p>
<p>Is there a way to show the multi friend selector widget (fb:multi-friend-selector) in an fb:dialog?</p>
<p>I have a button, on selecting which I would like to show the friend selector popup and users can send invite to their friends. I got the friend selector working on the main page but have no clue on how to display that widget in fb:dialog.</p>
<p>Thanks
Jugs</p>
http://stackoverflow.com/questions/1704593/jquery-html-attribute-how-to-exclude-an-elements-childs-html-from-that-elemen0Jquery html attribute : How to exclude an element's child's html from that element's html.Patrice Paquette2009-11-09T23:10:36Z2009-11-09T23:21:50Z
<p>Code snippet :</p>
<pre><code><div id="some_text">
<p>some text</p>
<div id="child">
<p>some other text</p>
</div>
</div
</code></pre>
<p>How can I only get "<code><p>some text</p></code>"?</p>
http://stackoverflow.com/questions/1693747/jquery-selector-help1jQuery selector help ?unknown (yahoo)2009-11-07T17:15:59Z2009-11-07T17:59:41Z
<p>How to anchor paragraph in other HTML pages and in the same time highlighted the area where the pointed paragraph is located when click the the button in the current page?</p>
<p>I made this simple code in JavaScript just doing the anchor thing</p>
<p>Current page:</p>
<pre><code><html>
<form>
<input type=button value="open in new tab" onClick="goToURL2()">
</form>
<body>
<script type="text/javascript">
<!--
function goToURL2() { window.open( "explanations.html#footwell"); }
// -->
</script>
</body>
</html>
</code></pre>
<p>New page:</p>
<pre><code><html>
<p><a name="footwell">
O, say can you see by the dawn's early light?
</a></p>
</html>
</code></pre>
<p>I think that "highlighted text" jQuery will be the best method but can't figure out how to do it with more than one html page.</p>
http://stackoverflow.com/questions/1677808/jquery-tricky-selector-question1jquery: tricky selector questionFuxi2009-11-05T01:33:54Z2009-11-05T03:39:11Z
<p>hi i'm having this markup:</p>
<pre><code><div id="main">
<div nam="item">1</div>
<div nam="item">2</div>
<div>
<div nam="item">3</div>
<div nam="item">4</div>
<div nam="item">5</div>
</div>
<div nam="item">6</div>
<div nam="item">7</div>
</div>
</code></pre>
<p>i'm now selecting only the direct child divs by using this method:</p>
<pre><code>var divs = $("#main > [nam]"
</code></pre>
<p>my question - i want to do this inside a function where i only pass the parent div, how would i need to change the selector?</p>
<pre><code>function get_rootChildren(div)
{
return($("* > [nam]",div));
}
</code></pre>
<p>^ this is bogus but i think u know what i mean - how could this be done?
thx, fuxi</p>
http://stackoverflow.com/questions/1668219/jquery-elementattributesomething-vs-element-class-performance0jQuery element[attribute=something] vs element.class performanceSeanJA2009-11-03T15:54:29Z2009-11-03T16:02:12Z
<p>I am wondering which way would end up being faster, selecting elements by:</p>
<pre><code>$('element[href=#my_link]');
</code></pre>
<p>or:</p>
<pre><code>$('element.my_class');
</code></pre>
<p>I don't like repeating myself when I write code, so I prefer to write it the first way for the most part because then I can add information to it like:</p>
<pre><code><a href="#delete_1">Delete</a>
$('a[href^=#delete]');
</code></pre>
<p>and then split it up so that I have all of the information that I need once it is clicked, or whatever the action may be. Am I sacrificing overall performance because of this?</p>
<p>(I guess I could rewrite it as class="delete" href="#1")</p>
http://stackoverflow.com/questions/1658085/jquery-find-not-working-for-first0jQuery Find not working for :firstNic Hubbard2009-11-01T19:31:51Z2009-11-01T19:39:49Z
<p>I am trying to find some child a elements within a ul parent. But, I need to only find the first a. Here is what I am using</p>
<pre><code>$('div.item a').click(function() {
$(this).parent().next('ul.subItems').find('a:first').addClass('selected');
});
</code></pre>
<p>HTML:</p>
<pre><code><div class="item"><a id="main5830" href="http://www.mysite.com">Test</a></div>
<ul class="subItems">
<li><a>test 1</a></li>
<li><a>test 2</a></li>
<li><a>test 3</a></li>
</ul>
</code></pre>
<p>I would like test 1's a element to get the class of selected.</p>
<p>For some reason, this is not selecting the first a within in the UL, or ANYTHING in the UL element. Have I done something wrong here?</p>
http://stackoverflow.com/questions/1657702/addid-in-jquery0addID in jQuery?Nimbuz2009-11-01T17:16:24Z2009-11-01T17:19:59Z
<p>Is there any selector available to add IDs like there is for adding a class - addClass()?</p>
http://stackoverflow.com/questions/1647336/what-does-imgrel-mean-in-this-jquery-plugin0What does img[@rel= mean in this jQuery plugin?Shore2009-10-30T00:20:49Z2009-10-30T00:28:18Z
<p><a href="http://files.cnblogs.com/opper/galleria.js" rel="nofollow">Here</a></p>
<p>Is it a deprecated selector?</p>
http://stackoverflow.com/questions/1644342/select-inner-text-jquery1Select inner text (jQuery)Sven Klouem2009-10-29T15:01:12Z2009-10-29T18:45:47Z
<pre><code><div class="boxen checkedzahlen" id="box41_0_1">
41
<input type="checkbox" value="1" name="cb41_0_1" id="cb41_0_1" checked="checked"/>
</div>
</code></pre>
<p>Something like this is given, how can i animate the text ("41"),
if $(this) <- the class:boxen, is clicked?</p>
<p>this > * does not work,
this:children also not...</p>
http://stackoverflow.com/questions/306583/jquery-this-selector-and-children19jQuery $(this) selector and children?Peeloo2008-11-20T19:44:05Z2009-10-29T16:55:45Z
<p>I'd like to use a selector to select the child img of the div I'm clicking on this example:</p>
<blockquote>
<p><div id="..."><img src="..."></div></p>
</blockquote>
<p>To get the div, I've got this selector:</p>
<blockquote>
<p>$(this)</p>
</blockquote>
<p>How do I get the img with a selector?</p>
http://stackoverflow.com/questions/1608695/jquery-contains-selector-multiple-text-items1JQuery Contains Selector - Multiple Text ItemsJohn2009-10-22T17:19:52Z2009-10-25T01:18:22Z
<p>Hi,</p>
<p>I am new to JQuery and maybe am missing the obvious, but how can I filter a table using the contains selector but have it look for multiple strings using an OR operator. In other words, I would like rows containing "Red" OR "Yellow" to be hidden.</p>
<p>So far I have this which works by hiding all rows except the given date:</p>
<pre><code>$(function()
{
$('div#WebPartWPQ5 table.ms-summarycustombody tr:not(:contains("10/27/2009"))')
.hide();
});
</code></pre>
<p>As added challenge, what I am really trying to do is write a hidden script that calulates a date range and then removes table rows containing dates not falling into that range.</p>
<p>Thank you in advance.</p>
<p>John</p>
http://stackoverflow.com/questions/1583620/how-to-select-div-in-table-cell-using-jquery2How to select div in table cell using jQuerysparkymark752009-10-18T00:45:40Z2009-10-18T17:40:46Z
<p>I have the following table structure;</p>
<pre><code> <tr>
<th><label for="ctl00_bodyContent_username">username:</label></th>
<td class="field"><input name="ctl00$bodyContent$username" type="text" id="ctl00_bodyContent_username" /></td>
<td class="info">
<div class="message">what do you want to be known as?</div>
<div class="valid">username available</div>
<div class="invalid">this username is already taken</div>
</td>
</tr>
</code></pre>
<p>What I'm looking to achieve is when the textbox #ctl00_bodyContent_username has focus, te div .message is shown (default is display:none) in the adjacent table cell.</p>
http://stackoverflow.com/questions/1569408/how-can-i-select-with-multiple-css-selector-with-yui30how can I select with multiple css selector with YUI3Young Park2009-10-14T22:41:24Z2009-10-15T00:16:38Z
<pre><code><ul>
<li class="selected cell">test</li>
<li class="cell">test2</li>
</ul>
</code></pre>
<p>How can I select only the .selected .cell element? </p>
<p>Y.one('.selected, .cell') <= This selects boths li elements. and I just want to select the first <li> element. </p>
<p>Is there something like?
Y.one('.cell').one('.selected') ???</p>
http://stackoverflow.com/questions/1565449/what-is-the-more-correct-efficient-selector0 What is the more correct/efficient selector? Karthik2009-10-14T10:24:45Z2009-10-14T10:27:47Z
<pre><code>$("select").change(function() {
alert($("select option:selected").val());
});
</code></pre>
<p>OR</p>
<pre><code>$("select").change(function() {
alert($(this).attr("value"));
});
</code></pre>
<p>I am specifically looking at the selector used in the alert. From my
testing the result in the same correct values to be displayed. </p>
http://stackoverflow.com/questions/1553601/select-a-tag-with-a-selector-from-a-text-variable-using-jquery0Select a Tag with a Selector from a Text Variable using jQuerybasit.2009-10-12T09:36:53Z2009-10-12T13:33:09Z
<p>I have a string which contains text and some <code><a></code> tags in it; I want to know how I can select a tag from the variable and loop it. I tried the following but it didn't work:</p>
<pre><code>var text = `some string here with <a href="#link">http:something.com</a> more string and more links also`;
$('a', text).each(function() {
var string = $(this).html();
$(this).html(string.substring(0, length-1)+(string.length > length ? end : ''));
});
</code></pre>
http://stackoverflow.com/questions/1553784/jquery-each-loop-and-replace-to-same-location0jquery .each loop and replace to same location?basit.2009-10-12T10:19:50Z2009-10-12T11:47:04Z
<p>i got help (<a href="http://stackoverflow.com/questions/1553601/jquery-select-a-tag-with-selector-from-a-text-veriable">http://stackoverflow.com/questions/1553601/jquery-select-a-tag-with-selector-from-a-text-veriable</a>) on looping the static var and replacing it value, but just one question is left from it, is how can i replace finded tags with newly changed tags in the text area</p>
<p>Code:</p>
<pre><code>var length = 30;
var end = '...';
var text = `some string here with <a href="#link">http:something.com</a> more string and more links also`;
$('<div>' + text + '</div>').find('a').each(function() {
var link_value = $(this).html();
$(this).html(link_value.substring(0, length-1)+(link_value.length > length ? end : ''));
// now how can i put $(this).html() back in the text area, which it was found at?
});
</code></pre>
http://stackoverflow.com/questions/1548811/xml-schema-key-in-sequence0XML Schema - Key in sequenceNona Urbiz2009-10-10T19:07:28Z2009-10-10T20:54:01Z
<p>I'm trying to put a key in sequence and am being bombarded with errors. It seems I can't do this. Additionally, I am being told my key needs a field and selector, which I have been able to find very little documentation on. (In fact, in desperation, I downloaded Liquid XML Studio [vs. Notepad] and searched it's help files. . . to find NO even reference to the word "selector") Regardless - what is another method I can use to guarantee a unique, not null value for an element, within a sequence? (The content in question is a string)</p>
<p>Please note that without the key element, the schema validates.</p>
<h3>The error</h3>
<blockquote>
Invalid per cvc-complex-type.1.2.4:
element {http://www.w3.org/2001/XMLSchema}:key not allowed here (1) in
element {http://www.w3.org/2001/XMLSchema}:sequence, expecting
[{http://www.w3.org/2001/XMLSchema}:annotation, $,
{http://www.w3.org/2001/XMLSchema}:element,
{http://www.w3.org/2001/XMLSchema}:group,
{http://www.w3.org/2001/XMLSchema}:choice,
{http://www.w3.org/2001/XMLSchema}:sequence,
{http://www.w3.org/2001/XMLSchema}:any]:
</blockquote>
<h3>The schema</h3>
<pre><code><?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="READOO" elementFormDefault="qualified">
<xs:element name="ReferralCollection">
<xs:complexType>
<xs:sequence>
<xs:key name="URL" type="string" />
<xs:element maxOccurs="unbounded" name="keyword">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="occurrences" type="xs:int" use="required" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
</code></pre>
http://stackoverflow.com/questions/1536518/jquery-click-once-then-disable-enable-element0jquery click once, then disable/enable element basit.2009-10-08T08:52:20Z2009-10-08T16:25:08Z
<p>i have many rows</p>
<ol>
<li>List item - delete</li>
<li>List item - delete</li>
<li>List item - delete</li>
</ol>
<p>like above 3 rows.. it has delete link, on click i want to disable that link, until i get response from ajax saying ok delete it or no not ok, dont delete it, user is not an owner, then i have to give the element back to clickable.. if that makes sence</p>
<p>basically preventing element on click and then restoring its element on error from backend.</p>
<p>what methods do i need to use for this? im using live method, if i use die, then how will i restore again?</p>
http://stackoverflow.com/questions/1537241/jquery-selector0jquery selectorntan2009-10-08T11:31:23Z2009-10-08T12:00:45Z
<p>Hi i need some hepl to find a selector for jqeury</p>
<p>I have these textboxes</p>
<pre><code><input type="text" name="text[1]" value="1,2,3">
<input type="text" name="text[2]" value="1,8,9">
<input type="text" name="text[3]" value="7,4,3">
</code></pre>
<p>i need for each these textboxes do a search and find if value=1 exist.
I need help to the selector (somthing like $(input[name=text[]]).each()</p>
<p>i dont want to use $(input[name^='text']).each(), i dont think its safe because the rest of my code.Is there a better way.</p>
<p>Can any one help</p>