I have a simple jQuery script in a WordPress plugin that is using a jQuery wrapper like this:
$(document).ready(function(){ // jQuery code is in here }
replace $ sign with jQuery like this:
$
jQuery
jQuery(function(){ //your code here });