Skip to content

Instantly share code, notes, and snippets.

@dbox
Created August 19, 2014 18:11
Show Gist options
  • Save dbox/2ce346441a27179f356c to your computer and use it in GitHub Desktop.
Save dbox/2ce346441a27179f356c to your computer and use it in GitHub Desktop.
<script>
//required for .cust
$(document).ready(function(){
$('a.cust').on('click',function(){
var newHref = $(this).attr('href');
newHref=newHref.replace("/",".html");
//alert(newHref);
$(this).attr('href',newHref);
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment