0
votes
3answers
43 views
jQuery: select an element’s class and id at the same time?
I've got some links that I want to select class and id at the same time.
This is because I've got 2 different behaviours. When a class of links got one class name they behave in one way, when the …
0
votes
3answers
19 views
jquery ajax get a pair of identical select menus to update each other - half working!
I'm improving a checkout page and have 2 identical 'country select' menus. One at the top of the page to calculate postage, and one at the bottom for entering delivery address. Our customers seem to …
0
votes
1answer
8 views
PerformSelector Monotouch Threading
Using this statement calls the selector immediately instead of 6 seconds from now.
this.PerformSelector(myStartWaitForSoundSelector, null, 6.0f);
Does anyone know how to get this to work with a …
6
votes
5answers
10k views
count immediate child div elements using jQuery
Hi,
I have the following HTML node structure:
<div id="foo">
<div id="bar"></div>
<div id="baz">
<div id="biz">
</div>
<span><span>
…
1
vote
3answers
41 views
jQuery select and filter contents of <option>
Hi,
I have the following drop down menu:
<select id="target">
<option value="0">Zero ($123.45)</option>
<option value="1">One ($99.99)</option>
<option …
0
votes
2answers
28 views
:empty pseudo selector with jQuery on a form element?
Is there a way I can use a jQuery pseudo selector like :empty or :not(:checked) on an input/textarea/select element, or any other way I can return an object that is empty?
1
vote
3answers
38 views
how to capture the click event of a dynamically generated button in jquery
i see there is this syntax for detecting any button click
<script type="text/javascript">
$(document).ready(function() {
$(":button").click(function(event) {
…
1
vote
7answers
1k views
jquery (”#field”) is null
Hello,
I have a selectbox with month periods in it.
Here is my code:
$(function(){
$("#ppsub_ppterm_id").change(function(){
var …
0
votes
1answer
60 views
jQuery: How can you test for the *absence* of a class?
Given that this is the correct way to see if 'this' has class 'selected':
if ($(this).hasClass('selected')) {
// logic goes here
}
What is the correct way to test for the absence of a class?
…
0
votes
5answers
46 views
jQuery matching pattern
I'm trying to validate my inputs with jQuery before a form is sent.
This is what my input fields look like when there is no value inserted in the database:
<input
class="field"
…
0
votes
2answers
74 views
jQuery - Getting Rows from a Table
Hey all,
The title on this one may be a bit misleading as it's not as simple as it sounds. I've got a page with two tables (each has 50 rows) shown side-by-side so that the rows align with one …
0
votes
1answer
18 views
Iphone SDK selector or abstract class
Hi,
I am developing a special type of view controller for an iPhone component library.
I have got the who view controller working well, but I need to change it so that it works in one of two ways:
…
1
vote
3answers
40 views
Find the class of the clicked item using Jquery
Hiya,
I have the following code:
$(".perf-row").click(function(e) {
if (e.target.tagName.toLowerCase() == "a") {
pageTracker._trackPageview($(this).attr("rel"));
return true; //link clicked
…
1
vote
4answers
30 views
jQuery selector help - Can I generate a selector from clicking on an element?
Hi All,
I have jQuery, FireFox, Firebug, IE, and IE developer toolbar. When I am examing a page with either FireBug or IE Dev toolbar, I am able to click on an element and it shows me in the dom where …
13
votes
7answers
426 views
jQuery: How to select “from here until the next H2”?
I'm setting up a very straightforward FAQ page with jQuery. Like so:
<h2>What happens when you click on this question?</h2>
<p>This answer will appear!</p>
This is all …
