So, i'm in an ajax request, in the success callback :
var just_id = $(this).attr('id');
$.ajax({
                type: "GET",
                url: "/tw/www/search/",
                data: {search:tw_search,  type:'tw_search'},
                success: function (html) {
                            window[just_id] = $(this).attr('tw_username');
                }
            });
With this code, after i call with ajax my script, i need to create a variable with the name of a specific element.
So, if i'm on a <div id="test"></div>, in var just_id i have test and then, i create a variable test with window[just_id].
But i need to retrieve this variable in an other function on my page.. How can i do that ? I need to create a global variable with windows[]... Thanks !