setAttribute не срабатывает на действие
Почему так скрипт срабатывает:
<script>
document.getElementById('shere_link').setAttribute ('data-url', 'http://site.com.ua/fav/?id=777');
</script>
а так нет:
<script>
$(function() {
$(".target").click(function(){
document.getElementById('shere_link').setAttribute ('data-url', 'http://site.com.ua/fav/?id=777');
});
});
</script>
Заранее спасибо.
|