Hi,
Just to looking for a better way to use jQuery, here is my doubt.

There is a page that uses $.post to call another page that build a
report in html table format to put the generated code in a div.
So far so good...but...in one of the columns of the report, has a link
that executes a javascript function with a parameter (ID).

I'm created a function in old style and works:

function functionName(parameter){
    doSomething;
}

How to create a jQuery function that I can use in a link tag <a>?

Eg.: <a href="javascript:calljQueryFunction(parameter)" >String<a>

Tks.

Ps.: My link tags has a class but there are many anothers links with
the same class that dont should trigger the function
Ps2.: I think that cant use ID in link tags...

Reply via email to