Показать сообщение отдельно
  #5 (permalink)  
Старый 22.11.2010, 11:42
Особый гость
Посмотреть профиль Найти все сообщения от monolithed
 
Регистрация: 02.04.2010
Сообщений: 4,260

<script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>

<a href="#">a</a>
<script type="text/javascript">
$('a[href="#"]').bind({
    mouseover: function(){
        $(this).attr('rel', $(this).attr('href'));

        if($(this).attr('href') == $(this).attr('rel')){
            $(this).attr('href', 'изменили href');
        }
       $(this).text($(this).attr('href'));
    },
    mouseout: function(){
        if($(this).attr('href') == 'изменили href'){
            $(this).attr('href', $(this).attr('rel'));
        }
        $(this).text($(this).attr('href'));
     }
});
</script>
Ответить с цитированием