So I know a couple of y'all are JQuery afficianados, so it's question time

I have three images wrapped in a href tags wrapped in a div called "tabBar"
each href references a ColdFusion page

further down the page I have a div called "ajaxContent"

this code is in the head of the document an included header.cfm

$(document).ready(function(){
            $('#tabBar a').click(function () {
                  $.ajax({
                       type: "GET",
                       url: +this.href,
                       dataType: "html"
                    success: function(xml){
                        $('#ajaxContent').load(url);

                    }

                   })
              });
        }
      );


What I want to do is load the referenced cfm page into the div when the 
image is clicked...

I'm having fits getting any JQuery functions to work in IE.

(note, there are some pretty deep embedded tables and divs in the layout)

-- 
Scott Stewart
ColdFusion Developer

Office of Research Information Systems
Research & Economic Development
University of North Carolina at Chapel Hill

Phone:(919)843-2408
Fax: (919)962-3600
Email: [EMAIL PROTECTED]



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Community/message.cfm/messageid:270432
Subscription: http://www.houseoffusion.com/groups/CF-Community/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.5

Reply via email to