That's because you have the following script whose click runs in the
context of the <a> tag.
<script language="javascript">
$.listen('click','a',function(e){
var pos = strrpos(e.target, '/') + 1;
var goto = substr(e.target, pos);
$(this).load(goto);
return false;
});
</script>
Try $(this).hide().parent().load(...
or
$(this).hide().parents('div:first').load(...
**--** Steve
On Mar 28, 8:55 pm, Xnuiem <[email protected]> wrote:
> I have three issues currently, any help at this point is greatly
> appreciated. I am just totally stuck.
>
> URL: http://www.thisrand.com/jj
> Username: test
> Password: test
>
> Goto "Administration".
>
> (Not all the links across the top work.)
> I have a client that thinks AJAX is "cool". I agree, however, the
> scope of doing an entire app in it has proven more difficult than I
> thought.
>
> From there, I have two problems.
>
> 1) If you click on the "Campaigns" tab, the click on a campaign name,
> it brings up a page that will eventually be the "View" page. On there
> is a link to "Modify" the campaign. If you click on modify, it brings
> up the modify form. Except for some reason the entire form is wrapped
> in the link from the previous page. Any thoughts?
>
> 2) After you click a link inside of the tags, like the campaign view
> link, click on "Systems Administration". It just goes to hell from
> there.
>
> Thanks a ton. If you need any more info, please let me know!
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---