- <script type="text/javascript">
- $(document).ready(function() {
- $(".emailLink").click(function(ev) {
- ev.preventDefault();
- var path = encodeURIComponent(window.location);
- var lnk = $(this).attr("href") + " - " + path;
- window.location = lnk;
- });
- });
- </script>