Here is my jquery code:
- <script type="text/javascript">
- $(document).ready(function(){
- $(".servicesexpand").hide();
- $(".servicesheader").click(function(){
- $(this).next(".servicesexpand").slideToggle(250);
- });
- });
- </script>
From a
separate page, how would i link to a collapsible div and make it expand from the link? It works great from the same page, but i just have no clue how to do it from a different page.
Any help is appreciated!