Tagged Questions

4
votes
2answers
150 views

Jquery Select element 2 positions further - another way to .next().next()

I am searching for a way how I could select a div element which is not the direct next one to the one which is "selected" by a click function. <div ...
2
votes
2answers
39 views

How do I select the next “select” (dropdown) in this HTML?

My html is: <tr> <td><select id = "delAppSelectApp" name="delAppSelectApp"><option value="--Select--"> --Select--</option></select></td> ...
0
votes
2answers
81 views

Select the .next() element with a specific attribute JQUERY

This is what I have $("#comment").next().attr('shown',0).fadeIn(); I'm trying to show the next comment that is hidden on the page. however, I'm trying to do two comments shown at a time, so if you ...
0
votes
3answers
1k views

select next option in jquery selectmenu

trying to create a button that will goto the next option in a selectmenu that has $selectmenu assigned to it. $('option:selected', 'select').removeAttr('selected').next('option').attr('selected', ...
0
votes
8answers
1k views

JQuery select the next element

I am trying to use JQuery to select the next element in a set of elements with the same class. Here is the HTML setup: <div class="sameClass selected"> <p>Text in here</p> ...