Thank you so much Steve. Resolved the issue for me first try! I was close, but now I see what i was doing wrong, by just building on top, I suppose that is the bubble effect.
If you can, please take a moment and look at my last issue: http://groups.google.com/group/jquery-ui/browse_thread/thread/e7658b6e67b0a5fe/7d66ecfe8c3b94c6#7d66ecfe8c3b94c6 You answered, but I still dont understand. This is what I get for living in the custom software world for too long, totally out of touch with the libraries, but getting there. On Sun, Mar 29, 2009 at 9:28 AM, Steven Black <[email protected]>wrote: > > 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 -~----------~----~----~----~------~----~------~--~---
