I have in my website, some javascript code that is responsible for the scrolling in the site.
I want to create trigger button so the users can enable/disable it.
<script src="/plugins/js/somejs1.js"></script>
<script src="/plugins/js/somejs2.js"></script>
<script type="text/javascript">
// some js (the code i want make a trigger button)
</script>
<span type="checkbox" id="the1" checked>
Display/Hide Button
</span>
<div id="trigger1">
Text Text Text
</div>
Can it be done with PHP ?