Personal website https://benkurtovic.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

11 lines
312 B

  1. $(document).ready(function() {
  2. $("#post").find("h1, h2, h3, h4, h5, h6").hover(function() {
  3. $(this).append($("<a>")
  4. .attr("href", "#" + this.id)
  5. .attr("class", "para-link")
  6. .text("¶"));
  7. }, function() {
  8. $(this).find(".para-link").remove();
  9. });
  10. });