James Hang wrote:
checkDeleteBrand = function(){ window.confirm("Really want to check this brand?"); }readyFunction = function(){ $('a.Brand').mouseover("checkBrand"); $(document).ready(readyFunction);
Beyond the difference between "checkBrand" and "checkDeletedBrand", you have something more fundamental. Luckily it's very simple. mouseover() needs a function as a parameter, not a string. Remove the quotes:
$('a.Brand').mouseover(checkBrand); That should do it. -- Scott