Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $('div.title > a').each(function(idx,elem){
- $(elem).mouseover(function(){
- if($('.2ch_popup').length > 0 && $('.2ch_popup').attr('rel') == $(this).attr('href'))
- return false;
- $.ajax({type: "GET", url: $(this).attr('href')})
- .done(function(msg){
- msg = $(msg);
- msg = msg.find('a').filter(function(){return ($(this).text() === "Ссылка" && $(this).attr('href') == $(elem).attr('href')); }).parents('article').find('.msg_body.message-w-userpic');
- popup = $('<div class="2ch_popup">' + msg.html() + '</div>');
- $('body').remove('.2ch_popup');
- $('body').append(popup);
- $('.2ch_popup').css('z-index', '9999')
- .css('position', 'absolute')
- .css('top', $(elem).offset().top+'px')
- .css('left', ($(elem).offset().left+$(elem).width()+20)+'px')
- .css('background-color','#101010')
- .css('width', '600px')
- .css('border-radius', '5px')
- .css('padding', '5px')
- .attr('rel', $(elem).attr('href'));
- })
- })
- .mouseout(function(){setTimeout(function(){$('.2ch_popup').remove();}, 2000); })
- });
Advertisement
Add Comment
Please, Sign In to add comment