View gist:9601714
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if( preg_match('/iphone|android/i', $_SERVER['HTTP_USER_AGENT']) ) { | |
include('index-mobile.html'); | |
} | |
else { | |
include('index-desktop.html'); | |
} | |
?> |
View gist:c488f979faf48d4834f2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$( "input[name|='untag']" ).click(); |
View gist:985fa69573b3e684e862
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('span').each(function( i ) { | |
if( $(this).html() == 'Leave Group'){ | |
$(this).click(); | |
} | |
}); |
View gist:618d0c8e60154ec1c3bc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('button').each(function( i ) { | |
if( $(this).html() == 'Leave Group'){ $(this).click(); } | |
}); |
View gist:144b81a8e97f88f3fc69
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var edit = $('.uiPopover > a'); | |
for (var i = 0; i < edit.length; i++) { edit[i].click(); }; |
View gist:973c46f7bb60c919da03
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('span').each(function( i ) { | |
if( $(this).html() == 'Report'){ $(this).click(); } | |
if( $(this).html() == 'Report/Remove Tag'){ $(this).click(); } | |
if( $(this).html() == 'Remove Tag...'){ $(this).click(); } | |
if( $(this).html() == 'Delete This Photo'){ $(this).click(); } | |
if( $(this).html() == 'Delete'){ $(this).click(); } | |
if( $(this).html() == 'Delete...'){ $(this).click(); } | |
if( $(this).html() == 'Unlike'){ $(this).click(); } | |
}); |
View gist:0eb08d7dcddf687ea749
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('button').each(function( i ) { | |
if( $(this).html() == 'Continue'){ $(this).click(); } | |
if( $(this).html() == 'Confirm'){ $(this).click(); } | |
if( $(this).html() == 'Delete Post'){ $(this).click(); } | |
if( $(this).html() == 'Remove Tag'){ $(this).click(); } | |
if( $(this).html() == 'Remove Search'){ $(this).click(); } | |
if( $(this).html() == 'Okay'){ $(this).click(); } | |
}); | |
$('span').each(function( i ) { | |
if( $(this).html() == 'Close'){ $(this).click(); } |
View gist:580a04c7884a9d0ca269
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('._4-hy').css('background-color','rgba(0, 0, 0, 0)'); |
View unfriend4.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"boxes" : [ { | |
"box" : { | |
"maxclass" : "comment", | |
"text" : "WARNING: THIS IS VERY GLITCHY", | |
"frgb" : 0.0, | |
"numinlets" : 1, | |
"fontsize" : 12.0, | |
"numoutlets" : 0, | |
"patching_rect" : [ 464.0, 344.0, 207.0, 20.0 ], |
View unfriend5.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function unfriend() { | |
window.scrollBy(0,113); | |
setTimeout('unfriend()',2800); | |
}; unfriend(); |
OlderNewer