Selectors that can be used in the jQuery JavaScript library to match a set of elements in a document. Most CSS selectors are implemented, as well as a set of custom selectors.

learn more… | top users | synonyms (1)

0
votes
3answers
36 views

jQuery selector dont work?

hi im starting to learn jquery, i read tutorial and i constructed my code but i wonder why this code does not work on my page: <script src="jquery-1.9.1.js"></script> <script ...
1
vote
3answers
65 views

Selecting a with containing div to make background image appear

A web page I'm working uses a basic CSS effect that shows an image when user hovers the mouse over the link. HTML looks like this: <div id="container"> <ul> <li> ...
-2
votes
3answers
44 views

Complicated Selectors for Jquery

<label><input type="radio"/>Option 1</label> <label><input type="radio"/>Option 2</label> <label><input type="radio"/>Option 3</label> ...
2
votes
1answer
51 views

JQuery * (all elements) selector excluding span tags that have some class. How could I make this work?

This is the first code var operations = 0; $('body').bind('DOMCharacterDataModified, DOMNodeInserted, DOMSubtreeModified', 'test', function() { if (operations < 1) { ...
0
votes
6answers
29 views

jQuery prevent selecting nested divs

I have the following HTML structure: <div class="comment"> ... <div class="comment"> </div> ... </div> I need to select the parent element with class "comment" ...
0
votes
4answers
51 views

In jQuery, how do you select current table TR but not any nested table TR?

So I tried this: input.find(" tr").each(function(){ ... }); I also tried this: input.find(" > tr").each(function(){ ... }); Both of these does not work. The first one will select any TR even ...
0
votes
2answers
42 views

how to select a input using jquery

My html is look like bellow (it's not a html i'm echo this using php.And it has lotof <li></li> with same 3 inputs content.it's a dynamically generate one) <li><span ...
0
votes
5answers
29 views

jQuery selector first td of each row

I have this stuff: <table> <tr> <td>nonono</td> <!-- FIND THIS --> </td>foobar</td> </tr> <tr> <td>nonono2</td> ...
1
vote
1answer
42 views

Show hidden nested tables in Jquery with selectors

I have html with several nested tables (in this example only one is nested): <table class="toptable" border="1"> <tbody> <tr ...
-3
votes
7answers
52 views

How to get the id of the wrapping element onclick? [closed]

I want to get the ID of the wrapping element onclick. Something like this <p id="wrapper"> Hello <span id="one"> how </span> are <span id="two">you</span></p> So ...
2
votes
2answers
46 views

Can I use pseudo classes inside jQuery .css() method?

I have the following jQuery code which works as just the class, but the :hover causes it not to work. $('.dd_question:hover').css('border','1px dashed #333333'); Is there some special code I can use ...
0
votes
2answers
37 views

jQuery :not() selector nesting

I have this HTML mark up: <div> <ul> <li> <div id="FieldWrap18" class="fieldSettings full" data-dependent="{19}" data-dependson=""> ...
-2
votes
1answer
56 views

Jquery to Get attribute values of dom elements matching a class name [closed]

I have a series of html elements such as <li id="1" class="jstree-unchecked jstree-open"> <li id="2" class="jstree-checked jstree-open"> <li id="3" class="jstree-unchecked ...
2
votes
2answers
38 views

jQuery wildcard selector on attributes

I have this stuff <table> <tr> <td> foo </td> <td> <a href="#" data-action:edit="1">[EDIT]</a> <a href="#" ...
2
votes
1answer
96 views

how to use jquery selector with multiple conditions including :hidden and :lt

I am trying to use jquery selector to find elements that are both hidden and contain a specific attribute. To make it even more complex, I want to limit this to the first 3 Here is what I have tried: ...
3
votes
4answers
48 views

JQuery Select Multiple Divs with Dropdown

Long time browser, first time poster. What I'd like to do is have a user select the number of weeks to display in a dropdown menu, and then reveal that many divs. Right now I have it setup where I ...
0
votes
1answer
11 views

Jquery Select Boxes into Likert Table

So I am trying to use jquery to dynamically change an entire fieldset of selectboxes into a likert table of radio buttons. I've found other solutions show you how to create a single select box into ...
6
votes
4answers
64 views

jQuery Selector inside of variable?

Hi I'm trying to get the IDs of all DIVs, inside another HTML File, with a specific Class. To load the file I use: $.get("blocks.html", function(data) { //here I don't know how :) }); Now ...
3
votes
5answers
120 views

jQuery Nested Plugins Selector Issue

I'd like the ability to nest one plugin within another. However my selectors are too aggressive and keep retrieving the elements for the nested plugin aswell. For example given the following HTML: ...
1
vote
3answers
24 views

how to detect an element that is clicked from many the same element

I have a lot of elements that have the same tags as follow: <ul> <li> <a>1</a> ... </li> <li> <a>2</a> ... </li> ...
1
vote
3answers
65 views

jQuery selector for all checkboxes of a certain class or id

I have an advanced search form on a page and there is also a "clear" button which resets the form. As the form gets cleared I am using this code to un-check the form's checkbox inputs: ...
0
votes
3answers
28 views

How to get objects that have children of some type using jQuery?

How to get objects that have children of some specific type using jQuery? For example, having the next DOM: <ul id="menu"> <li>Item 1</li> <li> Item 2 <ul> ...
0
votes
5answers
39 views

Jquery, get an array of text()

I am trying to get and array of text after using the text function, having a ul list like <ul> <li>one <ul> <li>one one</li> <li>one ...
0
votes
3answers
37 views

jquery .not() to execute method on click of all elements but not some elements

I want to hide a box on clicking anywhere in document but not in few areas so I wrote this code: ...
1
vote
1answer
55 views

Adding css styles to dynamically generated items (jquery , css)

I have a problem with styling dynamically generated items. here is the example of grid items. i need to add different classes (styles) to grid rows, in specific sequence. first row is grey, next ...
0
votes
2answers
82 views

How to select the value of a link button in gridview

I have a gridview i am trying to select the value of a link button clicked on a specific row of gridview. below is my code and it is erroring out due to the improper selecting of link button in ...
1
vote
1answer
68 views

Trouble getting unique tooltip based on X axis values in highcharts line graph

I'm trying to make a graph in which points having different x axis values have different tooltip .The 1st two points of a series have the same tooltip even though their x axis values are different.i.e ...
0
votes
1answer
48 views

Input from some text areas for highcharts tooltip

I am making a highcharts line graph in which tooltip for the points will be taken dynamically from the user through text areas placed inside a jQuery UI dialog.I have made 2 colums of text areas and i ...
1
vote
1answer
66 views

nested tables, remove inner table containing pattern

I have again an issue with scoping (I guess). I want to write an as generic as possible function to retrieve a page and remove some of its code before I set its content to a placeholder (<DIV>) ...
0
votes
1answer
65 views

Display highchart tooltip using Jquery ui dialog

I want to display values of multiple text areas as tooltip for various points in a highchart graph.On button click a dialog box will open containing text areas.on clicking OK button these inputs will ...
0
votes
2answers
76 views

Jquery Selector to get value of text area

I want to take values of multiple textarea and display them as tool tip of a highcharts graph.I used input and eq selector to get values of multiple text areas but the values are not getting returned ...
0
votes
3answers
49 views

Select a parent's child using index

:nth-child() - is a selector that is used to select each element that is the nth child of its parent. Are there any ways to select a parent's child using an index value? I want to get and set each ...
0
votes
2answers
30 views

Trouble understanding children() and :first in jQuery

I am confused about how the selection of an element in jQuery works using children() and the :first custom class? For instance, in this jsFiddle, the code ul > li {hello from nest} does not get ...
3
votes
1answer
59 views

jQuery: How to match non-adjacent sequence of classes

I am trying to use jQuery to match a series of non-adjacent siblings, but can't seem to get the selectors right. Here's the problem: I have a document with paragraphs and headings. The headings have ...
0
votes
3answers
51 views

Selecting the first div with class

Basically I have a row of links and a div sitting below them which content gets loaded into. There are several blocks of these repeated throughout the page so I only want to select the first div ...
0
votes
1answer
44 views

jQuery .attr() does not set custom attribute and value

I'm simply setting a custom attribute in the document.ready function in the following way: $(document).ready(function(){ $("div.para, pre.screen, div.figure, ...
0
votes
1answer
29 views

Selecting wildcard child class and adding class to parent

I want to select the a that is the parent of the img whose class has blah-3-* with * being a wildcard since it could be any number. Then I want to add the class gallery to the a parent. <div ...
0
votes
1answer
24 views

Wrapping multiple child elements in place

I have some HTML which is essentially the same as the following: <div id="row-1" class="row"> <div class="col1"></div> <div class="col2"></div> <div ...
1
vote
1answer
62 views

Jquery ID selector doesnt work with a variable

I've read a billion questions like this, but never found an answer yet. Anyway, when I type var variableContainingID = "header"; var div = $("#"+variableContainingID); It returns 'undefined' But ...
1
vote
1answer
25 views

Jquery during slideToggle() class change event

Hi there i would like to use slideToggle for a drop down the matter i struck ed there was am trying to toggle swap a anchor element's class in the parent div while Slidedown .foo class and while ...
0
votes
2answers
55 views

Select Option from dropdown list

I have a dynamic dropdown list which has value attribute set up as "4107,2632". When I apply filter I have only one value as 4107 which is available in the dropdown option in value attribute. The ...
1
vote
2answers
62 views

jQuery show and hide does not work consistently

I'm attempting to make a button display random element when clicked using show/hide. It sets up so the element will be hidden first to stop duplicates, then shown. However it sometimes doesn't show. ...
3
votes
3answers
50 views

CSS alternating table row to reset in a new table?

I have 2 tables and would like alternating row colors to reset based on a new table. the tr:odd seems to be applied across both of my tables. Here's my table html: <table class='myTable'> ...
2
votes
4answers
72 views

how to do detect if a div is still in the DOM

I want to know if a div exists within the DOM or not. I have a notification on the site, at the very top of the page, where the user can click on it, and it will slideUp. I have another jquery event ...
3
votes
2answers
45 views

Find element where child items h2 text has a specific value

I think this is really simple but I can't seem to find the right selector syntax. I have html like this: <div class="parent"> <h2>Summary</h2> <p>... bunch of content ...
1
vote
1answer
39 views

jQuery select value undefined

Ok, I have a really simple problem that is definetly easy to solve, but I can't find the solution. I have a function that get's called when I press the button. This function should do something, but ...
0
votes
0answers
48 views

eq() working against its definition

Here is the code: console.log($("div:eq(x)"))//[object Object] I dont understand why the above code outputs object object ,even if you supply y in place of x it still works ,whatever you supply it ...
1
vote
1answer
34 views

cannot accept jquery selector from managed bean jsf2 primefaces

I want to execute jquery from managed bean but I have this problem wtih selector : Uncaught Error: Syntax error, unrecognized expression: unsupported pseudo: lesarticles here is the managed bean ...
0
votes
3answers
52 views

How to get Elements values inside element with class

Below code is created from my DB so its multiple with same classes name but with different contents. What i need to do is that when button with class = 'config' is clicked i need to get the values ...
0
votes
4answers
87 views

What is “context” in jQuery selector?

Is there any difference between $('input.current_title', '#storePreferences').prop('disabled', false); and $('#storePreferences input.current_title').prop('disabled', false); ?

1 2 3 4 5 111