1. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type="text/javascript"></script>
  2. <script type="text/javascript">
  3. $(function() {
  4. //get the url for the incoming links page
  5. u = $("a[id$=WikiIncomingLinks_LinkText]")[0].href;
  6. //create a target container and load it with the incoming links
  7. //filtered to show the links list only
  8. l = $("<div id='incomingLinks' style='border-top: solid 1px silver'>").load(u + " .ms-formareaframe");
  9. //append the new container to the wiki content
  10. $(".ms-wikicontent").append(l);
  11. });
  12. </script>