UI shadow plugin - not displaying - no errors
Hey all, I am trying to use the ui shadow plugin and it will not
display a shadow on my object and not sure why..i get no error
messages or anything..any ideas? My .word is a span element as well,
code is below:
$(window).bind("load",function(){
$(".word").shadow();
});
$(document).ready(function(){
$('#addWord').submit(function(){
$.ajax({
type: "POST",
url: "add.php",
data: {"word": $('#word').val()}
})
$('#wordBank').load('words.php', '', function(){ $('.word',
this).draggable() });
return false;
})
$('#wordBank').load('words.php', '', function(){ $('.word',
this).draggable() })
});
Thanks so much! Ryan