Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(users).each(function(index) {
- $(grid[index]).attr({
- img: $(this).find('.user_image > img').prop('src'),
- name: $(this).find('.name').prop('href').slice(32, -11)
- });
- $(grid[index]).html(function() {
- var name = $(grid[index]).attr('name');
- var img = $(grid[index]).attr('img');
- return '<a href=/profile/' + name + '><img src=' + img + ' width="85" height="85"></a>';
- })
- $(grid[index]).mouseenter(function() {
- $('#userbox > center > h1').html($(this).find('a').html() + '<br>' + $(this).attr('name') + '<br> <div id="matches"><br></div>');
- insertMatches($(this).attr('name'), this);
- });
- })
Advertisement
Add Comment
Please, Sign In to add comment