+ 3
Can somebody help me plese !How to put two functions in the same onclick ?
In my program i have to put more than just one function in the same onclick .
2 Respuestas
+ 2
Wrap these two functions into one and use it as an onclick attribute.
Example:
function f1(){
// do smth
}
function f2(){
// do smth
}
function f3(){
f1();
f2();
}
+ 4
Okay i am trying Thank you 🤗