0
votes
1answer
28 views
simple question about jquery selector
for example, if I have:
var $target = $("div#target");
and then, I would like to pass this jquery object $target to another javascript function I defined myself, like:
function f(xml, $div_t)
{
…
0
votes
1answer
31 views
how can I select with multiple css selector with YUI3
<ul>
<li class="selected cell">test</li>
<li class="cell">test2</li>
</ul>
How can I select only the .selected .cell element?
Y.one('.selected, .cell') …
1
vote
2answers
46 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
47 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
3answers
50 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:
…
0
votes
2answers
52 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 …
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
33 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 …
2
votes
2answers
141 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
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 …
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 …
3
votes
6answers
800 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
62 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 …
0
votes
1answer
307 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 …
