Skip to content

Instantly share code, notes, and snippets.

@justin-unbounce
justin-unbounce / Redirect on timer.html
Last active February 15, 2016 18:57
Redirect on Timer
<script>
(function(){
// Your URL
var url = 'http://go.yoursite.com/page-name/';
// Delay before the redirect takes place, in seconds
var delay = 1;
@justin-unbounce
justin-unbounce / Test
Created November 26, 2015 00:31
Test
<script>
jQuery(function() {
jQuery("img[alt]").each(function() {
jQuery(this).attr("title",this.alt);
});
});
</script>