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. Within each table, I have buttons to perform various ajax calls (I already have this working). When a button is clicked, I'd like to show or toggle animated spinner so the user knows something is going on and then hide or toggle when the ajax call has completed. Basically I just need help identifying the spinner in order to toggle it. ID's are not unique

My first attempt was to locate the closet span tag to the button clicked. I coudn't get that to work. My second attempt was to use .parent() to obtain the TD and then from there, use the .next() to locate the span tag which would allow me to toggle it. I couldn't get that to work either. After writing it out here, the next() may not be the right option but again, I'm still learning how to traverse the DOM. :)

NOTE: The code below shows the spinner by default but I have a function not shown here which will hide it via jQuery's toggle function.

<table cellpadding="3" class="tablesorter" id="table_id">
<tr>
    <th class="form"><label>System Name</label></th>
    <td>
        <button type="button" id="removeButton" class="fg-button ui-state-default ui-corner-all remove_SystemName" >Remove</button>
        <button type="button" id="checkButton" class="fg-button ui-state-default ui-corner-all check_SystemName" >Check</button>
        <span id="statusInfoDiv" class="statusInfoDiv"><img src="/assets/images/working.gif"> Working...</span></td>
</tr>

jQuery Option 1 I tried

$(".check_SystemName").live("click", function(){
var spinner = $(this).closest('span').find("statusInfoDiv");
spinner.toggle();
});

jQuery Option 2 I tried

$(".check_SystemName").live("click", function(){
var spinner = $("this").parent().next(".statusInfoDiv");
spinner.toggle();
});
link|improve this question

"ID's are not unique" Do you mean you use the same ID's more than once in the page? AFAIK that's a very very bad idea. – Terseus Mar 9 '11 at 16:46
I totally agree. That said, "items" can be added to the list in the form of tables (kind of hard to explain) so unique ids are not easily obtained without the loss of performance. I'd much prefer to use unique ID's but based on the parameters of this project, I cannot avoid it. – dlackey Mar 9 '11 at 17:00
feedback

1 Answer

up vote 0 down vote accepted

You need to traverse "up" the DOM using parent... and then you can traverse back "down" the DOM using chiildren or siblings.

so you could do soemthing like:

$(this).parent().children('.statusInfoDiv').toggle();
link|improve this answer
I read about children but I didn't "get" it so I'll review it again. By the way, this worked. Very clean and elegant. – dlackey Mar 9 '11 at 17:01
If I wanted to locate a SPAN tag instead so I can assign text based on the ajax call results instead of toggling an image, would I change the code to $(this).parent().children('span.statusDiv').text('done'); ? – dlackey Mar 9 '11 at 21:12
You can make the call specifically on the class... you don't have to include the html element to the selector. There are multiple ways to update a div/span in jquery... innerHtml is a good one to look into. – Patrick Mar 11 '11 at 13:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.