My favorite way of doing this is to assign a specific class to the
html that you'd like changed, bind the click event, and utilize code
such as the following to modify any and all content that is of the
chosen class:
        $('[class*=facCity]').each(function() {
                //populate city with data from helper page
                if ($(this).length > 0) {
                        $(this).empty();
                }
                $(this).html("<strong>" + city + "</strong>");
        });


On Thu, Oct 15, 2009 at 12:08 PM, Yvan <[email protected]> wrote:
>
> If you fill out the short form in the righthand column of this
> page ... (using a phony email address and the zip code "46001") ...
> you'll get to a page that features jquery-based tabs (ie: Cash
> Advances, Credit Rebuilding, NetSpend, etc.).
>
> http://www.ideasdev.com/alliedcash/
>
> What I'm trying to do is to have it so that when you click on the
> individual tabs -- in addition to changing out the HTML that's
> displayed underneath the tabs (like what's currently happening) ---
> I'd like to also change out the HTML that's displayed in another DIV
> (ie: underneath the "Speed Up Your Process" heading graphic in the
> righthand column).
>
> How would I accomplish this?  Is it even possible?
>
> Thanks,
> - Yvan
>
>
>
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to