12 lines
379 B
HTML
12 lines
379 B
HTML
<script>
|
|
var headers = ["h1", "h2", "h3", "h4"]
|
|
var colors = ["red", "orange", "green", "blue"]
|
|
|
|
$.each(headers, function(i, header){
|
|
var color = colors[i];
|
|
$(header).each(function () {
|
|
var href=$(this).attr("id");
|
|
$(this).append('<a class="headerlink" style="color:' + color + '" href="#' + href + '" title="Permanent link">¶</a>')
|
|
});
|
|
})
|
|
</script>
|