fork download
  1. $(".add-remove-bookmark").click(function(e) {
  2. if ($(this).html() == "Add Bookmark") {
  3. $(this).html('Remove Bookmark');
  4. }
  5. else {
  6. $(this).html('Add Bookmark');
  7. }
  8. });
Runtime error #stdin #stdout #stderr 0.47s 322432KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
js: uncaught JavaScript runtime exception: ReferenceError: "$" is not defined.