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