Tagged Questions

0
votes
3answers
52 views

Tips to reference DOM Elements working with jQuery

Need some Advice on how to reference elements with jQuery (DOM/Traversing/Selectors). Sometimes its just enough to set an id at the desired element and do this: $('#elementID').hide(); But …
0
votes
1answer
25 views

CSS previous sibling selector

~ is for the next sibling. Is there an equivalent for the previous sibling? If there is not, a succinct no would suffice. :)
0
votes
6answers
31 views

return type of input with jquery

I have a form with dynamically created form elements. I need to get the value of each element, and send an ajax request to make sure the data is ok (the easy part). I can get each elements value easy …
0
votes
3answers
21 views

Prototype: how to dynamically construct selector?

I am having a little bit of difficulty passing a variable into a selector in prototype. I would like to be able to pass a variable into the select string, so that one function can work for many of the …
0
votes
2answers
23 views

NSCFSet objectAtIndex unrecognized selector, iterating works.

Hey guys, I was wondering how it can be that iterating through an NSMutableArray works, but when I call objectAtIndex it fails with "*** -[NSCFSet objectAtIndex:]: unrecognized selector sent to …
0
votes
1answer
23 views

jQuery syntax question : ul as variable, remove item?

This is a simple syntax question. I have a ul saved as a variable like this: $list = $("#city_list"); I am later removing some items from the list with this code: $('ul#city_list li#city_' + …
0
votes
7answers
71 views

CSS Selector Syntax

For this HTML: <div id="idName" class="className"> ... </div> I know this is correct selector syntax: div.className {...} div#idName {...} By mistake I did: #idName.className {...} …
1
vote
1answer
26 views

Zend framework forms and jQuery selectors - how to select by… ID?

So I've got this issue with forms generated by Zend Framework. As we know Zend is using this format for ID of HTML elements, i.e: contactDetails[name],contactDetails[email] etc. First of all, why …
2
votes
3answers
35 views

Css Selector problem

How do I do a css selector that selects a div that has the class of "someButton" AND "current"? .someButton .current { /* select current with the parent div of .someButton, correct? */ Please help …
0
votes
2answers
21 views

cancelling queued performSelector:afterDelay calls

hey there all, does anybody know if it is possible to cancel already queued selector events from the event stack or timer stack or whatever mechanism it is that is utilized by the API when you call …
0
votes
1answer
32 views

looping through set of elements in jquery

Hi, $('form td .hint p') this jquery selector returns back a list [p,p,p,p,p,p]. I would like to know what's the best way to loop through each of those, check their css values, and do something if …
3
votes
1answer
59 views

Is it possible to define an anonymous selector in Objective-C?

I'd like to be able to define an inline anonymous selector that a selector wherever a selector is needed as an argument. Is this possible, or do I have to just suck it up and define a method? …
0
votes
3answers
35 views

I want a function to be fired whenever one option of a radio element is checked. How to do it using Jquery?

There are many input radio elements on a web page and each radio element has several options. I want a function to be fired whenever one option of a radio element is checked. How to write the code …
0
votes
4answers
29 views

jQuery Selection of elements created run time

I have the following scenario: I have a div = "#div1" which is coded in html. I have populated this div with some data coming from a script service [ which means the "a's" are not there initially], …
2
votes
2answers
33 views

How can I refer to the calling element in JQuery?

For example: <input type="text" size="5" id="question'+$qid+'"onKeyUp="checkanswer('+i+')"/></div> I want to refer to the "question'+$qid+'" element inside the function checkanswer(), …

1 2 3 4 5 16 next
15 30 50 per page