1
vote
2answers
41 views
Python Selector (URL routing library), experience/opinions?
Does anyone have opinions about or experience with Python Selector? It looks great, but I'm a bit put off by its "Alpha" status on pypi and lack of unit tests.
I mostly like that its simple, self …
0
votes
3answers
45 views
jQuery: Using Variables in Selectors
Every searches I made only included solutions for variables like this: $('#div'+ id)
I need to delete a row.
var row = $(this).parent().parent().parent().find('tr#' + id).html();
I'd like to use …
0
votes
2answers
50 views
jquery custom selector with colon
I need a function to select all elements with a custom attribute, and take its name and value. for example:
<input type="text" my:name="koni" my:age="20" my:city="New York" />
Note that my is …
0
votes
3answers
46 views
Jquery find next/prev elements of a certain class but not necessarily siblings
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:
…
2
votes
2answers
32 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
32 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 …
0
votes
2answers
32 views
Another jquery :not selector question…
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:
#submenu …
0
votes
2answers
40 views
jQuery selector question
Hi,
I have a unordered list like the one below:
<ul id="tabs">
<li><a href="#tab1">latest news</a></li>
<li class="active"><a …
1
vote
4answers
61 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 …
1
vote
5answers
68 views
jquery: tricky selector question
hi i'm having this markup:
<div id="main">
<div nam="item">1</div>
<div nam="item">2</div>
<div>
<div nam="item">3</div>
…
2
votes
2answers
135 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 …
0
votes
4answers
77 views
C# html/css selector
Hello,
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 …
0
votes
1answer
297 views
FBML multi friend selector in fb:dialog
Hey Guys,
Is there a way to show the multi friend selector widget (fb:multi-friend-selector) in an fb:dialog?
I have a button, on selecting which I would like to show the friend selector popup and …
3
votes
6answers
795 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 …
1
vote
4answers
322 views
Select inner text (jQuery)
<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>
Something like this is given, how …
