I have a page with list items (links) that I need to be able to hide/show
from my admin page.
How do I get it to work that if i press a button in my admin page, it hides list items that are on a different page?
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
$("a").css("display","none");
});
});
</script>
The above code works to hide elements that are on the same page only.