I have a bit of code that works just fine in Firefox but does nothing
Internet Explorer.  Right now, I am using the JQuery tabs plugin, remotely
calling a page that displays various links.  These links are the links that
I am using in my code.  They use another page and return the results in a
DIV.

Here is the code I am using.

$(document).ready(function() {
    // add markup to container and applier click handlers to anchors
    $("#racks a").click(function(e){
        // send request
        $.post("buildRack.php", {rack_name: $(this).html(), rack_id:
$(this).attr("id")}, function(pre) {

        // format and output result
        $("#ird").html(pre);
    });

    // stop normal link click
    return false;
    });
});

I hope I explained this well enough, I am new to JQuery, sorry for the
noobie.  :)

Thanks!
-- 
View this message in context: 
http://www.nabble.com/IE-Problems-tf4097251s15494.html#a11650549
Sent from the JQuery mailing list archive at Nabble.com.

Reply via email to