0
multiple Onload functions in Web CV template
I want to load several functions when the side loads. However, it runs only the first even with my workaround. If you run the code you can see what other issues exist. For the design template I used the N-19 design from Coding Market. If you like it check their Youtube Channel und GitHub. I modified the template for my need, though. I use Javascript to make it more interactive. I like that it is printable. https://code.sololearn.com/WI6hFlNLwrYz/?ref=app
3 Respostas
+ 2
window.onload = function() {
event1();
event2();
event3();
}
+ 1
Thanks for your response!
I tried that. However, it only calls the first function when I tried.
+ 1
Amar Samdan Try putting all of your codes/methods in onload functions.