I have some issue with my wordpress theme and hope that one of jquery guru's or wordpress/php expert can help me with this.
I have a one page theme created for my wordpress project and wanted to use the easing/scroll effect, I use this as my base example: http://tympanus.net/codrops/2010/06/02/smooth-vertical-or-horizontal-page-scrolling-with-jquery/
I created the menu under menu option in wordpress dashboard, and use the anchor as the link like for home under url I use #home, #about etc.
This is the php code for the menu found in my index.php (template directory)
<?php wp_nav_menu(array( 'menu' => 'One Menu', 'container_class' => 'workmenu', 'theme_location' => 'header') ); ?>
I put the jquery code in footer.php found in my template folder
<?php wp_footer(); ?>
<script type="text/javascript" href="<?php echo get_template_directory_uri(); ?>/js/jquery.easing.1.3.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script type="text/javascript">
var $s = jQuery.noConflict();
$s(function() {
$s('ul.nav a').bind('click',function(event){
var $anchor = $(this);
$s('html, body').stop().animate({
scrollTop: $($anchor.attr('href')).offset().top
}, 1500,'easeInOutExpo');
/*
if you don't want to use the easing effects:
$('html, body').stop().animate({
scrollTop: $($anchor.attr('href')).offset().top
}, 1000);
*/
event.preventDefault();
});
});
</script>
</body>
</html>
The anchored links work but the easing/effect didn't work, I've been searching this for days now and still no luck. Thanks in advance for your help.
Here is my new code now without the jQuery.noConflict()
<?php wp_footer(); ?>
<script type="text/javascript" href="<?php echo get_template_directory_uri(); ?>/js/jquery.easing.1.3.js"></script>
<script type="text/javascript">
$(function() {
$('ul.nav a').bind('click',function(event){
var $anchor = $s(this);
$('html, body').stop().animate({
scrollTop: $s($anchor.attr('href')).offset().top
}, 1500,'easeInOutExpo');
/*
if you don't want to use the easing effects:
$('html, body').stop().animate({
scrollTop: $($anchor.attr('href')).offset().top
}, 1000);
*/
event.preventDefault();
});
});
</script>
`
$s, yet you reference$anchor = $(this)instead of$anchor = $s(this);. While this isn't probably the largest issue, if you have a need forjQuery.noConflict()then fixing this will help. Also,$($(anchor.attr('href'))should be$s($anchor.attr('href')).offset().topto be consistent with thejQuery.noConflict()method. More about the easing. What version of jQuery are you using? have you checked compatibility across different versions? have you checked the console for any errors? – Ohgodwhy Sep 28 '12 at 6:10errorfor now. – Ohgodwhy Sep 28 '12 at 6:46