[jQuery] .load() problem

[jQuery] .load() problem


Hi,
I load a dynamic response from server with this code:
$(document).ready(function() {
    $('.editPlayList').click(function(){
        $('#targetList').empty();
        var qLink = $(this).attr('href');
            $('#targetList').load(qLink);
            return false;
        });
    });
The code is generated and injected in the target div but:
1) onclick the firbug console launch more than 20 request and not only
one!!!!!!!!
2) The response in firebug remains white and code injected do not take
css styling.
Sure something wrong.....
Some suggestions???
Thanks
Andrea