vote up 0 vote down star
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>
flag
8  
This is standard javascript and will work with jQuery, what do you need jQuery to do? – beggs Nov 9 at 7:56
@beggs: Don't you mean without jQuery? – Jan Aagaard Nov 9 at 8:06

3 Answers

vote up 4 vote down check

This is a wild guess but I think you might want to rename link to something like

<a id='myId'>click here ...</a>

And do the following in jquery

$(document).ready(function(){$('#myId').click(function(){
  abc(1,2,3)})});

Jquery is a javascript framework, not a programming language.

link|flag
+1... Fastest gun to you... – beggs Nov 9 at 8:03
$(document).ready === $ – stereofrog Nov 9 at 9:13
great thanx where can i get jquery basic fundas – sai Nov 9 at 9:36
vote up 3 vote down

You could fire the event using this:

$(document).ready(function(){$('some-id').click(abc(1, 2, 3))});

function abc(a,b,c) { 
   alert('a :'+a+' b:'+ b);
   xyz(c);
}

function xyz(c) {
   alert('c :' + c);
}

...

<a id="some-id">click here to check value of abc </a>
link|flag
That code won't run. Error on first line. – svinto Nov 9 at 8:06
oops.... fixed. – beggs Nov 9 at 8:25
vote up 1 vote down

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 onclick is preferable to using the javascript: pseudo-protocol in a link, and you should provide a real URL for the link to take the user when they have JavaScript turned off:

<a href="non_js_alternative.html" onclick="abc(1, 2, 3);">click here to check value of abc </a>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.