Hey all,
i have this small script, that i'd like to embed into a wordpress site. in plain html it's working!
function interval() { $('.box').effect('shake', { times:5 }, 800); } $(document).ready(function() { var shake = setInterval(interval, 4000); });
i know there are some safety measures in wp, that demand to have something like this:
jQuery(function($)
But still i cannot figure out the right syntax for this because of the interval stuff...
Can somebody help me?
@bogus, just wrap everything in:
jQuery(function($) { // Your snippet here });
http://www.ericmmartin.com/5-tips-for-using-jquery-with-wordpress/ No. 5 for reference
thanks! easy as that! <3
Hey all,
i have this small script, that i'd like to embed into a wordpress site. in plain html it's working!
i know there are some safety measures in wp, that demand to have something like this:
But still i cannot figure out the right syntax for this because of the interval stuff...
Can somebody help me?
@bogus, just wrap everything in:
http://www.ericmmartin.com/5-tips-for-using-jquery-with-wordpress/ No. 5 for reference
thanks! easy as that! <3