livequery not working...

livequery not working...

I have this bit of code...


$(document).ready(function() {

   
   $("a.index").livequery('click', function(e){
      e.preventDefault();
                alert("Working!");

                // Code here //

        });
});



Which mysteriously isn't "Working!". I've used livequery before without a problem, for the same situation which was using livequery to bind new links to a click function. That old project works fine still, this new project isn't. I'm using the same livequery, jquery builds so that shouldn't be the issue.

I'm clueless as to what's going on.... anyone?