((( мне нужна там ссылка)))
весь код..
jQuery( document ).ready( function ( $ ) {
var overlay = $( '#overlay' );
var link = $( '#site_wrap a' );
var likar = getCookie( 'likar' );
var href;
link.click( askMe );
setTimeout( askMe, 1000 );
function askMe( e )
{
if ( !likar ) {
overlay.fadeIn( 400 );
likar = confirm( 'текст' + ТЕКСТ со сылкой );
if ( !likar ) {
if ( $( this ).attr( 'href' ) != '#' ) {
href = $( this ).attr( 'href' );
}
$( this ).attr( 'href', '#' );
}
else {
overlay.fadeOut( 400 );
document.cookie = 'likar = true; path=/';
if ( $( this ).attr( 'href' ) == '#' ) {
$( this ).attr( 'href', href );
}
}
}
}
function getCookie( name )
{
var matches = document.cookie.match( new RegExp( "(?:^|; )" + name.replace( /([\.$?*|{}\(\)\[\]\\\/\+^])/g, '\\$1') + "=([^;]*)" ));
return matches ? matches[ 1 ] : false;
}
});