Tagged Questions

0
votes
3answers
22 views

Can you do an ‘AND’ on a jQuery selector to target multiple buttons?

I have two types of buttons that I want to use the same code block. Rather than create two event handlers is it possible to reference the buttons by doing something like this: $(" …
0
votes
2answers
40 views

How do I wrap everything inside a TD element with a SPAN or DIV

What am I doing wrong, my html is rendered as such: <td colspan="2"><input id="ctl00_ContentPlaceHolder1_Login1_RememberMe" type="checkbox" name="ctl00$ContentPlaceHol …
0
votes
2answers
7 views

how to apply each index value of an array to each value of a group of selected elements

So if I have an array of 2 values and I want to apply those values to two elements, I can't seem to figure out a way to loop through the selected elements and have a counter or som …
0
votes
2answers
18 views

jquery selectable bahavior act like checkbox

http://jqueryui.com/demos/selectable/#serialize right now on selectable, if you click on row to select, it will be selected, then try selecting next row, you will notice the first …
0
votes
2answers
24 views

jQuery select where attribute = value

I am trying to select an input where the value equals a dynamic value trimmed = jQuery.trim(a); preSelectedCheckBox = $(this).find("input[value=" + trimmed + "]"); The element e …
0
votes
0answers
6 views

help with onseek and selectors

I am using this: $(function() { // initialize scrollable window.api = $("div.scrollable").scrollable({ clickable: true, a …
0
votes
6answers
57 views

How do I select more than one element using the jQuery attribute selector

I have two elements that I would like to select <input id="iMe" /> and <span id="sMe">Blah</span> I would like to select them both: $("span[id$='Me']") and $( …
0
votes
1answer
19 views

Every form element with its id starting with a tag

I got 2 forms in 2 different div's which are hidden, if the user clicks on one (login, register) the relevant div is shown. I've named the form fields like reg_username, reg_email …
0
votes
4answers
76 views

Object-Oriented jQuery Question…

$("#e1").click(function() { $("#descriptions div").removeClass("show"); $("#e1d").addClass("show"); }); $("#e2").click(function() { $("#descriptions div").removeClass("show" …
0
votes
1answer
18 views

Add a unique ID to form input for total

Hi, The problem I'm having is i'm working on an invoicing system. Which uses this, $(document).ready(function() { $('#add').click(function() { JQuery('#lineItems').app …
0
votes
3answers
47 views

jQuery: How to overwrite tables width?

I have the table that goes like this: <table style="width:375pt">. How can I overwrite its width to 50%? I need to select just this one table with this width and not other ta …
0
votes
2answers
75 views

how to stop jQuery default accumulative loop

I've write a addrow event like this.... $('.addRow').click(function(){ var $newTr = $('#tb1 tbody>tr:last').clone(true); $newTr.insertAfter('#tb1 tbody>tr:last'); newRowNum …
0
votes
4answers
48 views

jQuery: Count Number of Inputs with a Specific Value

I need to count the number of text inputs with a value of 1. I have tried the following but with no luck. $('.class[value="1"]').length $('.class:contains("1")').length Using $ …
0
votes
5answers
77 views

What’s the difference between these two jQuery selectors?

With this markup: <div id="e"> <div id="f"></div> </div> Does $('#e > #f') return the same as $('#e #f')?
1
vote
5answers
119 views

selecting root element in jquery

I need to be able to select the root element without knowing the node types, class, id or hierachy. <div id="0"> <div id="0a"> <div id="a01"></div …

1 2 3 4 5 next
15 30 50 per page