I'm trying to call multiple functions at the same time and I seem to be getting an annoying error.
I've tried:
This:
<a href=\"#\" onclick=\"videosContent('all'); headerMiddle('all', 'videos');\">All</a>
This:
<a href=\"#\" onclick=\"return videosContent('all');return headerMiddle('all', 'videos');\">All</a>
And This:
<a href=\"#\" onclick=\"videosContent('all');return headerMiddle('all', 'videos');\">All</a>
And it's not doing what it's meant to do. I know the functions work as well! Rather annoying.
Any help would be appreciated.