Question

I have the jQuery UI on my site so im using jquery 1.8.2, and jquery custom 1.8.24. I am wondering why this code for a jquery highlight effect

$(document).ready(function () {
     $("#comment" + 33).click(function () {
         $(this).effect("highlight", {}, 2000);
     });
 });

does not work on my website.
the id comment33 is a element.
please may you help me. thanks

Was it helpful?

Solution

Check this http://jsfiddle.net/6mMNX/

$(document).ready(function () {
    $("#comment" + 33).click(function () {
        $(this).effect("highlight", {}, 2000);
    });
});

Your code works. Check for dependencies if all your libraries are added correctly.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top