Tagged Questions
A selector can be: - A CSS selector, which determines how style rules are applied to a document - A string identifying a method name in the Objective-C programming language - A special kind of switch used in computers to connect multiple lines (I/O) to a single line
338
votes
6answers
361k views
$(this) selector and children?
I'd like to use a selector to select the child img of the div I'm clicking on this example:
<div id="..."><img src="..."></div>
To get the div, I've got this selector:
$(this)
...
32
votes
12answers
65k views
jQuery Set Select Index
I have an select box:
<select id="selectBox">
<option value="0">Number 0</option>
<option value="1">Number 1</option>
<option value="2">Number 2</option>
...
32
votes
3answers
20k views
What is fastest children() or find() in jQuery?
To select a child node in jQuery one can use children() but also find().
For example:
$(this).children('.foo');
gives the same result as:
$(this).find('.foo');
Now, which option is fastest or ...
29
votes
3answers
23k views
Jquery selector for the label of a checkbox
<input type="checkbox" name="filter" id="comedyclubs"/>
<label for="comedyclubs">Comedy Clubs</label>
If I have a check box with a label describing it, how can I select the label ...
29
votes
5answers
51k views
Objective-C: Calling selectors with multiple arguments
In MyClass.m, I've defined
- (void) myTest: (NSString *) withAString{
NSLog(@"hi, %@", withAString);
}
and the appropriate declaration in MyClass.h . Later I want to call
[self ...
18
votes
4answers
3k views
how to create an “array of selectors” in objective-c
i'm using the iphone sdk (3.0) and i'm trying to create an array of selectors to invoke a variety of methods within one class.
Obviously, I'm doing something wrong (I think @selector isn't considered ...
16
votes
5answers
27k views
Android selector & text color
I want a simple TextView to behave the way simple_list_item_1 in a ListView does. Here's the XML:
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
...
14
votes
4answers
7k views
XPath to select multiple tags
given this simplified data format:
<a>
<b>
<c>C1</c>
<d>D1</d>
<e>E1</e>
<f>don't select this one</f>
...
12
votes
5answers
5k views
jQuery selector for inputs with square brackets in the name attribute
I want to do this:
$('input[inputName=someValue]')
Except that the name of the input is not 'inputName', it is 'inputName[]'. And this doesn't work:
$('input[inputName[]=someValue]')
and neither ...
12
votes
4answers
3k views
Cucumber/Webrat: follow link by CSS class?
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:
<div id="some_information_container">
...
12
votes
2answers
33k views
Android : Customizing tabs on state : How do I make a selector a drawable
I know how to put the icon on each tab, that is no problem. I also ran across this :
Stack Overflow thread on pretty much same thing
I followed one of the links from that question, and found this
...
11
votes
2answers
16k views
addID in jQuery?
Is there any selector available to add IDs like there is for adding a class - addClass()?
10
votes
2answers
2k views
'-respondsToSelector:' not found in protocol(s)
Hello i have received this message ever since i started building my first iphone program several months ago. I check if a delegate implements a given method. It works but I get this warning. How can i ...
10
votes
3answers
9k views
JQuery selector value escaping
I have a dropdown list that contains a series of options:
<select id=SomeDropdown>
<option value="a'b]<p>">a'b]<p></option>
<option ...
9
votes
1answer
4k views
Android customized button problem with changing text color
I made a button that changes the background drawable on different states, this way:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" ...
9
votes
4answers
2k views
Element or class LIKE selector for JQuery?
For whatever reason I have these classes called .main_sub1, .main_sub2 etc. Never mind why I can't have .main .sub.
Is there a way with JQuery, sort of in the way it is possible to do with ...
9
votes
2answers
204 views
jQuery performance when selecting multiple items
More of a curiosity question...when doing the following:
$('.selector1, .selector2').doSomething()
Does jQuery fully traverse the DOM twice to get each set of objects matching each selector or is ...
8
votes
6answers
170 views
Is element-specific CSS selector bad?
Is p.error better or worse than .error?
I have read that element-specific selectors are bad and should be used only if really needed but noone seems to know why. I mean I do understand that .error is ...
8
votes
2answers
4k views
replace selector images programmatically
I have an ImageView that has a drawable image resource set to a selector. How do I programmatically access the selector and change the imgages of the highlighted and non-highlighted state?
Here is a ...
8
votes
8answers
3k views
How to make CSS visible only for Opera 11 - Opera 11 CSS Hack
Is there a way to make some CSS rules visible only for Opera (11)?
Thank you!
8
votes
5answers
4k views
using jQuery NOT selector to exclude elements with particular children
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.
Example:
<div ...
8
votes
5answers
28k views
jQuery Set Selected Option Using Next
How can I, using jQuery, set the "next" item of an already selected item as "selected."
For example, if I have:
<select>
<option value="1" >Number 1</option>
<option value="2" ...
8
votes
2answers
9k views
Is there a jQuery selector/method to find a specific parent element n levels up?
Consider the following HTML. If I have a JSON reference to the <button> element, how can I get a reference to the outer <tr> element in both cases
<table id="my-table">
<tr>
...
7
votes
4answers
805 views
Jquery - exclude click event based on condition?
I'm trying to set conditions on a jquery event.
I have an input element and a div.
I want to detect a click anywhere on the page and to execute that method but only if the click is not on the input ...
7
votes
5answers
457 views
What is the purpose of the 'div' selector and why do so many developers use it in their style sheets?
Looking through style sheets from popular & unpopular websites I have found the div selector included in them. The bottom four examples were taken from the style sheets of the popular sites Stack ...
7
votes
2answers
2k views
How to verify if a delegate responds to a selector?
I know I need to write:
[delegate respondsToSelector:@selector(myMethod:)]
But the compiler is complaining that respondsToSelector is not a method in the protocol, which is correct, However I have ...
7
votes
3answers
13k views
How do I call performSelectorOnMainThread: with an selector that takes > 1 arguments?
A typical call to performSelectorOnMainThread: looks like this:
[target performSelectorOnMainThread:action withObject:foo waitUntilDone:NO];
where "result" is an argument passed to "action". A ...
7
votes
4answers
7k views
jQuery: selecting checked checkbox
Suppose I have the following HTML:
<form id="myform">
<input type='checkbox' name='foo[]'/> Check 1<br/>
<input type='checkbox' name='foo[]' checked='true'/> Check ...
5
votes
4answers
57 views
jQuery selector : get the content of 1st element class containing specific word
Quick jQuery selector question :
I need to get the content of the first element (div/span/...) having a class containing a string (eg : "price").
Something not like this ;o) :
var price = ( ...
5
votes
2answers
68 views
jQuery Selectors - In order of speeds
I found a article regarding this a year ago but cannot find it now and all other articles I find aren't quite complete.
What I want is to build a definitive list of the quickest ways to select ...
5
votes
2answers
119 views
jQuery: Get original selector
I'm in the middle of writing a plugin and I'd like to be able to get the original selector that jQuery used to create the object.
So if you wanted to apply something like .siblings() you could get ...
5
votes
3answers
165 views
Can I select empty textareas with CSS?
Is there a way that I can select a textarea such that $('#id_of_textarea').val() in jQuery will be ''? I tried using :empty. I saw that CSS provides a way to select empty inputs because the text is in ...
5
votes
1answer
98 views
Can I assume and handle SEL in Objective-C as a pointer to something?
I'm trying to interface Lua with Objective-C, and I think string conversion with NSSelectorFromString() has too big an overhead because Lua has to copy all strings to internalize them (although I'm ...
5
votes
2answers
214 views
WPF Selector — How do I ensure that it's only going to allow a single selection and not multiple selections?
Basically, I have a control that I want to extend from the Selector Class. I know that Selector allows for multiple child items to be selected, but I don't want that. I only want a single child to be ...
5
votes
4answers
597 views
C# Linq Select Problem in Method Chain
Note that the _src inherit IQueryable<U> and V inherit new();
I wrote the following statement, there is no syntax error.
IQueryable<V> a = from s in _src where (s.Right - 1 == s.Left) ...
5
votes
4answers
1k views
C# html/css selector
I'm wondering if there's a jQuery-like css selector that can be used in C#.
Currently, I'm parsing some html strings using regex and thought it would be much nicer to have something like the css ...
5
votes
6answers
7k views
Using jQuery, how to find out if CSS selector “input[type=text]” is natively supported by browser?
In my CSS I have a rule that must be applied to all text fields (using the CSS3 selector input[type=text].
I also use jQuery. Some browsers like Internet Explorer 6 does not support that form for CSS ...
5
votes
4answers
2k views
How do I make sure my WPF TabControl always has a selected tab when it contains at least one tab?
I have a TabControl whose items are bound to an ObservableCollection:
<TabControl ItemsSource="{Binding MyObservableCollection}" />
The tabs are added and removed as expected as items are ...
4
votes
3answers
34 views
refactoring jquery selector expression
Is there a way that I can write the following selector in a less verbose fashion (the parent id is being repeated again and again).
$("#parent_id .class1 , #parent_id .class2,....")
Thanx!
4
votes
1answer
57 views
Selector Performance - 'E#id' vs '#id' - in CSS and jQuery
When using selectors in CSS and in jQuery, are there any efficiency differences between using'E#id' and #id, where E is any HTML element? If yes, does it only apply to certain layout engines and/or ...
4
votes
6answers
59 views
what does this mean: “jQuery('> li', this)”
I'm trying to figure out how this jQuery plugin works: http://codeasily.com/jquery/multi-column-list-with-jquery
In the plugin there is this line at the beginning:
if(jQuery('> li', this)) {
I ...
4
votes
2answers
41 views
Change a String
Not sure how to ask this question, but here goes.
Say I have:
var foo = 'marginLeft';
How can I change it into:
marginLeft
So this would be possible:
$(element).animate({foo: 20});
Please ...
4
votes
2answers
92 views
jQuery Selector: how can I specify one select menu when I have more than one?
I have 4 select menus, all with the same products. (User is supposed to use the select menus to add products to an invoice).
So each section is composed of a select menu, a quantity text field and a ...
4
votes
1answer
98 views
Twisted Throughput Limit Decreases
I am developing a program which allows for simulations of networks on a single machine. For this I am using Twisted for asynchronous I/O, as having a thread for each 'connection' might be a bit much. ...
4
votes
1answer
323 views
Passing a @selector dynamically
Depending on the result from ABPersonGetSortOrdering(), I want to sort a UILocalizedIndexCollation by first name or last name.
I'm having problems switching the @selector used for the ...
4
votes
2answers
575 views
jQuery Select and wrap textNode
I want to select the test inside the div element and wrap it with <b> tag. <b> tag should only wrap to text inside div and not text inside a child element such as the tag in this example. ...
4
votes
4answers
375 views
Is ID selector faster than class selector when it is cached in jquery
I know that ID is a faster selector than class in Javascript. But what if I cache the selector? When the selector is cached, would it differ in speed if it’s a class selector, or will it be as fast as ...
4
votes
2answers
439 views
forwardInvocation not being called?
I'm having trouble getting forwardInvocation to work. For some reason, the Objective-C runtime completely ignores my forwardInvocation: method and throws an unrecognized selector exception.
My test ...
4
votes
1answer
116 views
Are Objective-C initializers allowed to share the same name?
I'm running into an odd issue in Objective-C when I have two classes using initializers of the same name, but differently-typed arguments. For example, let's say I create classes A and B:
A.h:
...
4
votes
5answers
18k views
ListView item background via custom selector
Is it possible to apply a custom background to each Listview item via the list selector?
The default selector specifies @android:color/transparent for the state_focused="false" case, but changing ...