Сообщение от Tolys
|
а если сделать, чтобы ссылка открывалась в новом окне?
|
Как вариант...
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<!--
<link rel="stylesheet" type="text/css" href="tmp.css" />
-->
<style type="text/css">
</style>
<script type="text/javascript">
$(document).ready(function (){
$('a').click(function (){
var o=$(this);
if (o.data('on')==0) {
alert('Переход по ссылке пока не работает...');
return
};
o.data('on',0);
setTimeout(function (){
o.data('on',1);
},5000);
window.open(o.data('url'),'');
});
});
</script>
</head>
<body>
<a href='#' data-on='1' data-url='http://www.yandex.ru'>test</a>
</body>
</html>