Skip to content

Instantly share code, notes, and snippets.

@freeformz
Created February 20, 2012 19:58
Show Gist options
  • Save freeformz/1871035 to your computer and use it in GitHub Desktop.
Save freeformz/1871035 to your computer and use it in GitHub Desktop.
DotJS s/h2/pre/
function preify() {
if ( $('#tmplPaging').css('display') == 'none' ) {
setTimeout( preify, 1000);
} else {
$('#offline_occurrences li h2')
.replaceWith(function() { return '<pre>' + $(this).text() + '</pre>' });
}
}
$(document).ready( preify );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment