|
{html} <style> #children-links li:nth-child(1) { display: none; } </style> <script> $("div#children-links li a").text(function(index, text) { return text.replace(" Release Notes", ""); }); $("div#children-links li a").text(function(index, text) { return text.replace(" Release Note", ""); }); </script> {html} |