My code is:
...
<li onclick="myFunc()">text</li>
...
and my javaScript code is:
function myFunc(){
}
function otherFunc(){
}
now i need to call 'otherFunc' function after 'li' clicked.
My code is:
...
<li onclick="myFunc()">text</li>
...
and my javaScript code is:
function myFunc(){
}
function otherFunc(){
}
now i need to call 'otherFunc' function after 'li' clicked.