i m having problem  in IE once i click on accordion its work but next
time it doesn't my code is follow


                jQuery('#navigation').Accordion({
                        active: true,
                        header: '.head',
                        navigation: true,
                        event: 'click',
                        autoheight: true,
                        animated: 'easeslide'
                });

$('#navigation a').each(function()
 {
        if($(this).attr("class") != "head")
        {
                $(this).click(function()
                {
                        var load_image = "<img src='" + this_domain + 
"/images/common/
loading.gif' />";
                        $('#fpimages').html(load_image);
                        d_id = $("#hdev_id").val();
                        $.get(this_domain + 
'/body/view_developments/ajax_floorplan.php',
{dev_id: d_id, fp_id: this.id},
                        function(str) {$("#fpimages").html(str);});
                        $('#fp_menu a').removeClass("selected");
                        $(this).addClass("selected");
                        //var img_value = 'http://' + 
this_domain+'/development/images/111/
floorplan/'+this.id;
                        //$("#fp_img").attr('src',img_value);
                });
        }
});



i debug it ...it show didn't goes to easesilde again



please tell me wht is problem

Reply via email to