I want to pass parameter when I click in <a href>, first I have this and works fine:
<a href="#" rel="like{{num}}"> I like </a>|
$("a[rel^='like']").click(function(){
$.ajax({
...
});
but I don't know how to pass parameter to that function, so I do this:
<a href="#" rel="like{{num}}"
onclick="cap(para1, para2)"> I like </a>
Finally, in my Javascript I have this simple function:
function cap(para1, para2){
alert('here');
}
but I obtain this error:
ReferenceError: cap is not defined
Any idea?
capfunction happen to be inside of a$(document).ready()callback? – Blender Oct 26 '12 at 8:19