unhide collapsable div from link on another page.

unhide collapsable div from link on another page.

Here is my jquery code:

  1. <script type="text/javascript">
  2. $(document).ready(function(){
  3.         $(".servicesexpand").hide();
  4.         $(".servicesheader").click(function(){
  5.                 $(this).next(".servicesexpand").slideToggle(250);
  6.         });
  7. });
  8. </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!