I will try to be as clear as possible so that you can understand me and help, I have javascript
following.
function labelthumbs(e) {
document.write('<ul id="test">');
}
It uses the function labelthumbs
and I would like to add another function labelthumbs2
to that same javascript
without needing to duplicate and create 2 javascript
with different functions.
Instead of:
function labelthumbs(e) {
document.write('<ul id="teste">');
}
function labelthumbs2(e) {
document.write('<ul id="teste">');
}
I'd like something like this to work:
function labelthumbs(e)
function labelthumbs2(e)
{
document.write('<ul id="teste">');
}