how do i access the url of an <a> tag matched by jquery?
when i was not using livequery, i could just do $(item)[0] but that
doesn't seem to be working anymore, as its returning an http document
now.  here's my code:

container.find("a.vote").livequery('click', function(e){
e.preventDefault();
$.post("http://www.shadowpush.com/vote4/";, {vote4: $(this)[0]} ,
function(data){ $("#table").html( data ); });
})

suggestions?
thanks

Reply via email to