<script type="text/javascript">
if (window.jQuery) alert("jQuery подключен");
else alert("jQuery не подключен");
</script>
<script type="text/javascript">
$(document).ready(function(){
alert(jQuery.fn.jquery);
});
</script>
jQuery подключен
<script>
$(document).ready(function(){
alert('Ваша версия jQuery ' + jQuery.fn.jquery);
});
</script>
В чем проблема что одни скрипты выполняются, а другие нет?
<a href="#n">Н</a>
<a name="n"></a>Н<br><div id="n">111</div>
$("a[href^='#']").on('click', function (event) {
event.preventDefault();
event.stopPropagation();
var $this = $(this),
$target = $($this.attr('href'));
$target.toggleClass('active');
});
<a href="#anchor1"></a>
<a href="#anchor2"></a>
.....
<a href="#anchorN"></a>
name="anchor1" id="1"
name="anchor2" id="2"
...
name="anchorN" id="N"
$args = array('fields'=>'idss','order'=>'DESC','orderby'=>$mysort, 'offset'=> $myoffset,'ignore_sticky_posts' => 1, 'post_type' => $yttype, 'post_status' => 'publish', 'posts_per_page' => 1);
$the_query = new WP_Query($args);
while ($the_query->have_posts() ) : $the_query->the_post();
print_r($the_query->posts);
endwhile;
wp_reset_postdata();
Более того, якоря вообще перестают работать!!!!