Skip to content

Commit

Permalink
Trying to make eMusic less hateful
Browse files Browse the repository at this point in the history
This has been laying around, and I just want to commit/save it.
I want to make the emusic.com experience less ajax-bullshitty and more
like a normal web site that doesn't hate me.
  • Loading branch information
ymendel committed Jul 15, 2012
1 parent b0b244c commit ec4a115
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions emusic.com.js
@@ -0,0 +1,9 @@
//$('body').on('load', function(e) {
// $(".discography a[href]").css('border', 'thin solid blue');//addClass('no-ajax');
//});

$('div.search-module').prepend('<a href="blah" id="bingbong" style="z-index:999; color:white; size:1000%" class="no-ajax">hey</a>');
$('a#bingbong').click(function(e) {
$(".discography a[href]").addClass('no-ajax');
e.preventDefault();
});

0 comments on commit ec4a115

Please sign in to comment.