2
votes
2answers
23 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
29 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
30 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
38 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
47 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
3answers
36 views
Jquery html attribute : How to exclude an element’s child’s html from that element’s html.
Code snippet :
<div id="some_text">
<p>some text</p>
<div id="child">
<p>some other text</p>
</div>
</div
How can I only get …
1
vote
2answers
68 views
jQuery selector help ?
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?
I made this simple code in …
1
vote
5answers
67 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>
…
0
votes
1answer
35 views
jQuery element[attribute=something] vs element.class performance
I am wondering which way would end up being faster, selecting elements by:
$('element[href=#my_link]');
or:
$('element.my_class');
I don't like repeating myself when I write code, so I prefer to …
0
votes
1answer
61 views
jQuery Find not working for :first
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
$('div.item a').click(function() {
…
0
votes
2answers
33 views
addID in jQuery?
Is there any selector available to add IDs like there is for adding a class - addClass()?
0
votes
4answers
67 views
What does img[@rel= mean in this jQuery plugin?
Here
Is it a deprecated selector?
1
vote
4answers
248 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 …
1
vote
2answers
108 views
JQuery Contains Selector - Multiple Text Items
Hi,
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 …
2
votes
2answers
107 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 …
