Tagged Questions

2
votes
3answers
137 views

Insert new DIV between two DIVs that have the same class and are immediate siblings

Struggling with this one for a while now. My markup simplified: <div class=row> <div class="somediv"></div> <div class="somediv2"></div> <div ...
1
vote
4answers
73 views

get next or live element with jQuery find

Alright, not sure if find() will be the correct method for this. I am using pretty photo and I am loading some inline content. Basically when pretty photo launches, it clones what is defined inline ...
1
vote
2answers
187 views

Using jQuery, when drop down box changes, I need another input field to become required using Coldfusion

I have a form that outputs systems assigned to a project. The systems are looped and new rows can be added dynamically so using ID attribute is not available. When the user make a change to the ...
1
vote
1answer
250 views

jQuery to toggle waiting image while ajax call is made

I'm learning how to traverse the DOM so this question is related to that. I'm using Coldfusion to output some database results. The loops are looping over table data, not looping over table rows. ...
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> ...