21
votes
8answers
37k views
jQuery $(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 …
5
votes
2answers
2k 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 …
4
votes
3answers
434 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>
…
3
votes
6answers
817 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 …
3
votes
4answers
445 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 …
3
votes
4answers
883 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 …
2
votes
3answers
67 views
FileBrowser/FileSelector for WPF
Hello,
does anybody know, if there is a WindowsExplorer-like filebrowser which I can include in my WPF-window. I don't want use OpenFileDialog.
I have searched a bit and only found simple …
2
votes
2answers
35 views
jQuery: selector question (parent)
hi all,
i'm having this markup:
<ul class=container>
<li rec=1>
<div>
<div>
<div>i'm here</div>
</div>
…
2
votes
4answers
40 views
jQuery: get certain element from selector
i searched the docs and couldnt find it :(
let's say i'm selecting all elements like:
var items = $(".myClass");
it returns eg. 5 items - now how can i grab select eg. the 2nd one?
items(2) or …
2
votes
2answers
159 views
Cucumber/Webrat: follow link by CSS class?
Hello there,
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 …
2
votes
3answers
132 views
How to select div in table cell using jQuery
I have the following table structure;
<tr>
<th><label for="ctl00_bodyContent_username">username:</label></th>
<td …
2
votes
2answers
240 views
Jquery - Select first cell of a given row?
Hi,
I have a table with images in one column. When I click the image, would like to get the text value of the first column in that row.
I can get the whole row with this:
var a = …
2
votes
3answers
398 views
Jquery select div in a row
Hiya all, I'm really stuck .. I need urgent advice :D here is my html :
<!-- Beginning of ROW !-->
<div id="row1">
<div id="entry">
free
<span>some text</span>
…
2
votes
2answers
61 views
Which of these selectors is likely to be faster?
A couple of questions actually,
Given that the following two will return the same result set
$("#MyTable tr");
$("tr", "#MyTable");
is there any difference in performance between using the …
2
votes
3answers
264 views
Using NSProxy and forwardInvocation:
Hi,
I would like to code a proxy that forwards method invocations to another object over TCP without NSConnection and NSDistanceObject stuff. What I want is my own protocol.
The problem is that …
