function abc(a,b,c)
{
alert('a :'+a+' b:'+ b);
xyz(c);
}
function xyz(c)
{
alert('c :' + c);
}
<a href="javascript:abc(1,2,3)" >click here to check value of abc </a>
|
|
|
||||||
|
|
|
This is a wild guess but I think you might want to rename link to something like
And do the following in jquery
Jquery is a javascript framework, not a programming language. |
||||||
|
|
|
You could fire the event using this:
|
|||
|
|
jQuery is a JavaScript library whose purpose is to make some browser scripting tasks easier. It is not a replacement for JavaScript. Don't try to use it for everything. Also, using
|
||
|
|
