0
votes
2answers
35 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 h …
0
votes
4answers
64 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 …
3
votes
6answers
709 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 suppo …
1
vote
4answers
46 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.
…
0
votes
1answer
203 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 …
2
votes
1answer
78 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 id="s …
0
votes
3answers
29 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 …
1
vote
2answers
64 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 …
1
vote
5answers
64 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"& …
0
votes
1answer
32 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 …
0
votes
1answer
55 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() {
$(this).parent( …
0
votes
2answers
31 views
addID in jQuery?
Is there any selector available to add IDs like there is for adding a class - addClass()?
0
votes
4answers
58 views
What does img[@rel= mean in this jQuery plugin?
Here
Is it a deprecated selector?
1
vote
4answers
195 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 t …
18
votes
8answers
31k 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 t …
