I have two functions in my js file:
function all_opened()
{
allToggle(true);
}
function all_closed()
{
allToggle(false);
}
I need both functions called in single function like
function openclose()
And my HTML Code:
<a href="#" onclick="">Open/Close</a>
Something like this: