1
vote
2answers
60 views
jQuery selector to determine ‘or’?
Let's say my HTML may look one of two ways:
Option 1:
<h2>My header
<span class="apple">My Span</span>
</h2>
Option 2:
<h2>My header</h2&g …
0
votes
5answers
77 views
JQuery select an element inside a td
I would like to select an element inside the td of one of my tables but I don't really understand the syntax.
This is what I tried:
$("table > td:#box")
This is a sample of …
1
vote
2answers
44 views
jQuery selector samba
This is my first post on stackoverflow, hello everyone!
My first venture into jQuery animation is to have a set of images in two divs, top-half and bottom-half, and make them rota …
0
votes
1answer
38 views
window.parent jQuery selector not working in IE8
this code bellow works fine
$('html').bind('mousewheel', function(event, delta) {
window.parent.scrollBy(-120 * delta,0);
return false;
});
but this one doe …
1
vote
2answers
35 views
jQuery .each() not equivelant to calling a method directly on the selector?
I've never had this issue before, so I'm somewhat lost. I'm getting two different results using essentially the same underlying code. The first way is this:
$(".myClassSelector"). …
1
vote
1answer
36 views
Getting the index of a list item with Jquery
I'm trying to find out the index number of the last list item but the jquery I'm using keeps returning -1. This is the JS and the html that I'm using.
var index = $('#imageThumbna …
0
votes
2answers
25 views
jquery adding stripes to ul
Hi I'm trying to make a function that will add a striped effect to an unordered list, I've got the following so far but cant work out how the selector should work.
(function($ …
0
votes
2answers
39 views
if selectors chaining?
ok, im trying to animate something to different heights if a selected id has a selected class.
i have the following code.
function myfunction() {
if ($('#homebutton').hasCla …
3
votes
5answers
54 views
Is there a peformance difference between jquery selector or a variable
Lately i have been wondering if there is a performance difference between repeating the selector just over and over again or just using a var and store the selector in that and jus …
0
votes
1answer
42 views
JQuery click function not being set
I want my links not to have the weird outline and the best way I found to solve this is have a "null link" to focus on after a click. This works great when defining the onclick me …
0
votes
1answer
49 views
jquery selection
I have the following code :
$(document).ready(function() {
var hash = window.location.hash.substr(1);
var href = $('#nav li a').each(function(){
var href = $(this).attr('href …
0
votes
3answers
25 views
Need the class of a parent function’s returned element
Hello,
Somewhat new to jQuery, so excuse the attempt at properly identifying things.
I need an element's id to be reflected in a selector that is a couple functions deep, and I'm …
0
votes
4answers
53 views
CSS reducing syntax
I'd like two different HTML elements that are at the same nesting level to have identical CSS property values. Is there an alternative to this wasteful syntax?
.level1 .level2 .le …
0
votes
4answers
89 views
How to use jQuery to select IDs not in specific class
I have a jQuery script that selects all IDs with 'Phone' in them. However, I have a small part that needs to NOT select them if they are in a class.
What I have, according to the …
1
vote
5answers
129 views
How to select only the immediate children of an element in jQuery
I'm writing an html page with some jQuery for style. So I have the following:
$("table tr:odd td").css({"background-color":"rgb(233,247,255)"});
This makes every other row bluis …
