Can we put two JavaScript onclick events in one input type button tag? To call two different functions?
There is no need to have two functions within one element, you need just one that calls the other two!
click
function my_func() { my_func_1(); my_func_2(); }