cancel
Showing results for 
Search instead for 
Did you mean: 

<a href>

Former Member
0 Kudos

Dear Guru,

I am trying to run 2 commands in 1 <A href...> command such that when a text is clicked, it runs both a javascript and another dhtml command.

Is this possible?

Regards,

Mirella

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos
Former Member
0 Kudos

It can run only one command but what I suggest is you can write one javascript say script1

and then in script1(){

script2();

script3();

}

this would work. If you need to pass parameters to script2 and script then pass it to script1 and then retrieve and pass it to 2 and 3.

call script1 from <a href=>

Regards,

piyush

ps: please mark for all useful answers.