jQuery conflict(s) – any experts around?
-
Hi all
Has anyone got any custom jQuery scripts playing nice with BuddyPress 1.0.1. and are you able to help a jQuery novice with something probably really easy?
Basically when I have <?php wp_head(); ?> loading, any code I have in a custom.js file doesn’t seem to work.
e.g something simple like the following that is meant to slide a login form in and out when you click the link doesn’t work:
$(document).ready(function () {
$('a.menu_class').click(function () {
$('div#login-form').slideToggle('medium');
});
});I have found reference to the wp enqueue script and am wondering if I should be using the following syntax to load custom javascript in WordPress at page load instead?
jQuery(document).ready(function($){
I have tried the above systax instead but it still doesn’t work so I think I am missing something quite fundamental to do with BuddyPress and jQuery
p.s Something like the end result I am trying to accomplish can be seen here
- The topic ‘jQuery conflict(s) – any experts around?’ is closed to new replies.