Witty Profiles

menu
sign in or join

_Random

Status:

Member Since: 1 Jul 2010 04:16pm

Last Seen: 16 Aug 2011 05:49pm

user id: 114480

1 Quotes
0 Favorites
0 Following
9 Followers
Comment Points
Comments
Comments on Quotes
Comments by User
Quote Comments by User
Flair beta

follow block report

$(document).ready(function(){ // clear the search box when someone goes to type in it $("#search_box").focus(function() { if ($("#search_box").val() == 'search...') { $("#search_box").val(''); } }); $(".favheart").click(function(){ var quote_id = $(this).attr('id').split("_"); quote_id = quote_id[quote_id.length - 1]; if ($(this).hasClass("favheartOff")) { favs.addToFavs(quote_id); } if ($(this).hasClass("favheartOn")) { favs.removeFromFavs(quote_id); } }); // prevent accidental quote deletions $(".delete-a-quote").live("click", function() { $("#deletequoteform-"+this.id.split("-")[1]).show(); }); $(".delete-a-quote-cancel").live("click", function() { $("#deletequoteform-"+this.id.split("-")[1]).hide(); }); // prevent accidental quote deletions $(".undelete-a-quote").live("click", function() { $("#undeletequoteform-"+this.id.split("-")[1]).show(); }); $(".undelete-a-quote-cancel").live("click", function() { $("#undeletequoteform-"+this.id.split("-")[1]).hide(); }); }); var favs = { addToFavs : function ( quote_id ) { var url = '/api.php'; var action = 'add_quote_to_faves'; var params = 'a=' + action + '"e_id=' + quote_id ; $.ajax({ type: "POST", url: url, data: params, success: function(msg) { if (msg == 'ok') { $('#fav_btn_' + quote_id).addClass('favheartOn'); $('#fav_btn_' + quote_id).removeClass('favheartOff'); $('#fav_btn_' + quote_id).attr({alt:'remove from faves', title:'remove from faves'}); var new_score = parseInt($('#score_' + quote_id).html()) + 1; var new_label = 'Remove from Faves'; $('#score_' + quote_id).text(new_score); $('#scorelabel_' + quote_id).text(new_label); } else { alert('Please sign in to add this quote to your faves'); } }, error: function() { alert('uh oh, something went wrong. Please try adding that quote to your favorites again.'); } }); }, removeFromFavs : function ( quote_id ) { var url = '/api.php'; var action = 'remove_quote_from_faves'; var params = 'a=' + action + '"e_id=' + quote_id ; $.ajax({ type: "POST", url: url, data: params, success: function(msg) { if (msg == 'ok') { $('#fav_btn_' + quote_id).addClass('favheartOff'); $('#fav_btn_' + quote_id).removeClass('favheartOn'); $('#fav_btn_' + quote_id).attr({alt:'add to favs', title:'add to favs'}); var new_score = parseInt($('#score_' + quote_id).html()) - 1; var new_label = 'Add to Faves'; $('#score_' + quote_id).text(new_score); $('#scorelabel_' + quote_id).text(new_label); } else { alert('uh oh'); } }, error: function() { alert('uh oh, something went wrong. Please try removing that quote from your favorites again.'); } }); } } var quote = { reportQuote : function ( quote_id ) { var url = '/ajax/quote.php'; var action = 'report'; var params = 'action=' + action + '"e_id=' + quote_id ; $.ajax({ type: "GET", url: url, data: params, success: function(msg) { if (msg == 'ok') { alert('Thank you for telling us that this quote doesn\'t follow the rules.'); } else { alert('Please sign in to report this quote'); } }, error: function() { alert('uh oh. something went wrong. Please try reporting that quote again.'); } }); } } // prevent accidental deletion var follow = { startfollowing : function ( user_id ) { var url = '/api.php'; var action = 'start_following'; var params = 'a=' + action + '&user_id=' + user_id ; $.ajax({ type: "POST", url: url, data: params, success: function(msg) { if (msg == 'ok') { alert('ok'); } else { alert('Please sign in to follow this person.'); } }, error: function() { alert('uh oh, something went wrong. Please try following that person again.'); } }); }, stopfollowing : function ( user_id ) { var url = '/api.php'; var action = 'stop_following'; var params = 'a=' + action + '&user_id=' + user_id ; $.ajax({ type: "POST", url: url, data: params, success: function(msg) { if (msg == 'ok') { alert('ok'); } else { alert('not ok'); } }, error: function() { alert('uh oh, something went wrong. Please try to stop following that person again.'); } }); } } var block = { startblocking : function ( user_id ) { var url = '/api.php'; var action = 'start_blocking'; var params = 'a=' + action + '&user_id=' + user_id ; $.ajax({ type: "POST", url: url, data: params, success: function(msg) { if (msg == 'ok') { alert('Ok. This person\'s comments will no longer show on your profile and your quotes.'); } else { alert('Please sign in to block this person.'); } }, error: function() { alert('uh oh, something went wrong. Please try blocking that person again.'); } }); }, stopblocking : function ( user_id ) { var url = '/api.php'; var action = 'stop_blocking'; var params = 'a=' + action + '&user_id=' + user_id ; $.ajax({ type: "POST", url: url, data: params, success: function(msg) { if (msg == 'ok') { alert('ok. This person\'s comments will now show on your profile and your quotes.'); } else { alert('not ok'); } }, error: function() { alert('uh oh, something went wrong. Please try to stop blocking that person again.'); } }); } } var votes = { // // vote up a quote // voteUp : function ( quote_id ) { var url = '/ajax/vote.php'; var action = 'voteup'; var params = 'action=' + action + '"e_id=' + quote_id ; var intervalID = setInterval('drawrandomchar('+quote_id+')',100); $.ajax({ type: "GET", url: url, data: params, success: function(msg){ if (msg == 'ok') { $.get("/ajax/vote.php?action=getscore"e_id=" + quote_id, function(data){ clearInterval(intervalID); $("#score_" + quote_id).html(parseInt(data) + 1); }); } else { clearInterval(intervalID); $("#score_" + quote_id).html("signin").animate({opactiy:1},4000).load("/ajax/vote.php?action=getscore"e_id=" + quote_id); } }, error: function() { clearInterval(intervalID); alert('Uh oh, something went wrong. Please try voting up this quote again.'); } }); }, // // vote down a quote // voteDown : function ( quote_id ) { var url = '/ajax/vote.php'; var action = 'votedown'; var params = 'action=' + action + '"e_id=' + quote_id ; var intervalID = setInterval('drawrandomchar('+quote_id+')',100); $.ajax({ type: "GET", url: url, data: params, success: function(msg){ if (msg == 'ok') { $.get("/ajax/vote.php?action=getscore"e_id=" + quote_id, function(data){ clearInterval(intervalID); $("#score_" + quote_id).html(parseInt(data) - 1); }); } else { clearInterval(intervalID); $("#score_" + quote_id).html("signin").animate({opactiy:1},4000).load("/ajax/vote.php?action=getscore"e_id=" + quote_id); } }, error: function() { clearInterval(intervalID); //$("#score_" + quote_id).html("?"); alert('Uh oh, something went wrong. Please try voting down this quote again.'); } }); }, // // vote up a quote RANDOM // voteUpRandom : function ( quote_id ) { var url = '/ajax/vote.php'; var action = 'voteup'; var params = 'action=' + action + '"e_id=' + quote_id ; var intervalID = setInterval('drawrandomchar('+quote_id+')',100); $.ajax({ type: "GET", url: url, data: params, success: function(msg){ if (msg == 'ok') { $.get("/ajax/vote.php?action=getscore"e_id=" + quote_id, function(data){ clearInterval(intervalID); $("#score_" + quote_id).html(data); window.location = '/random-quote'; }); } else { clearInterval(intervalID); $("#score_" + quote_id).html("signin").animate({opactiy:1},4000).load("/ajax/vote.php?action=getscore"e_id=" + quote_id); } }, error: function() { clearInterval(intervalID); alert('Uh oh, something went wrong. Please try voting up this quote again.'); } }); }, // // vote down a quote RANDOM // voteDownRandom : function ( quote_id ) { var url = '/ajax/vote.php'; var action = 'votedown'; var params = 'action=' + action + '"e_id=' + quote_id ; var intervalID = setInterval('drawrandomchar('+quote_id+')',100); $.ajax({ type: "GET", url: url, data: params, success: function(msg){ if (msg == 'ok') { $.get("/ajax/vote.php?action=getscore"e_id=" + quote_id, function(data){ clearInterval(intervalID); $("#score_" + quote_id).html(data); window.location = '/random-quote'; }); } else { clearInterval(intervalID); $("#score_" + quote_id).html("signin").animate({opactiy:1},4000).load("/ajax/vote.php?action=getscore"e_id=" + quote_id); } }, error: function() { clearInterval(intervalID); //$("#score_" + quote_id).html("?"); alert('Uh oh, something went wrong. Please try voting down this quote again.'); } }); } } var uglychars = ['.','..','...','..']; var curuglychar = 0; function drawrandomchar(quote_id) { numchars = uglychars.length; curuglychar = ++curuglychar%numchars; $("#score_"+quote_id).html(uglychars[curuglychar]); }
 
Profile for _RandomRequests
 
 
 

Follow Me!<3(:
Block Me ):
_RandomRequests online now
I joined on: July 9th, 2010 at 2:20pm
I last logged on: 10 Jul 2010 10:36pm
Myspace: http://www.myspace.com/sandiee123
How many quotes do I have?  4
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------  Hello everyone!
I make:
-Backgrounds(not layouts)
-Fanart
-Fades

Details!
Backgrounds:
-Give me a link of a picture you want, or give me an idea of what you want
(colors, design, image, etc.)
-I also have tons of cute, colorful pictures that I can use.
Fanart:
-Tell me what picture you want(or give me a link) 
-Tell me if you want any words on it, or if you want borders or anything.
-Or you can give me a quote you want made and
I can find a picture that suits it best.
-Any specific fonts or colors that you want?
Fades:
-What you wan faded (the text)
-And what colors you want used
[You can give me any additional information too!]

I will finish as soon as I can, and you just come here
to pick up your quote.
If you need any assistance in adding anything to your profile,
I'd be more than happy to help! Thanks, bye!

Request, request, request!
 
(Oh, and if anyone is wondering. This is my request account, my main account is _Sandrasaurus, so go visit me over there! :D)
  ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Codes:
hunnitsme:
<style type="text/css">body{background: url(http://i877.photobucket.com/albums/ab335/_sandrasaurus/Random/Colors.jpg) repeat top left; background-attachment: fixed}</style>
iSeeGlitterInTheAir:
<style type="text/css">body{http://i439.photobucket.com/albums/qq116/joeluvr1/colorful-shooting-stars.gif) repeat top left; background-attachment: fixed}</style>
ChrizLover_213:(there's two)
<a href="http://s877.photobucket.com/albums/ab335/_sandrasaurus/Random/?action=view&current=rubberduckies.jpg" target="_blank"><img src="http://i877.photobucket.com/albums/ab335/_sandrasaurus/Random/rubberduckies.jpg" border="0" alt="Photobucket"></a>

<a href="http://s877.photobucket.com/albums/ab335/_sandrasaurus/Random/?action=view&current=ducks.jpg" target="_blank"><img src="http://i877.photobucket.com/albums/ab335/_sandrasaurus/Random/ducks.jpg" border="0" alt="Photobucket"></a>

-
-----------------------------------------------------------------------

 Some examples of my work:
 
Jacob Black
Photobucket
 
 
 
Quotes by _RandomRequests
 
 
 
Hello everyone!
I make:
-Backgrounds
-Fanart
-Fades
-And I can even turn your favorite witty quote into a picture that you can put on your profile!

Please, look at my page for details! Ohhkay, thanks!(:
Quote #1640384 was made by _RandomRequests on 10 Jul 2010 at 18:48:37 and was filed under requests.
delete quote
 
 
So, I start a fight 'cause I need to feel something
And you do what you want 'cause I'm not what you wanted.

-Taylor Swift

Request for: IrelandEsmeAndTaylorLily
Quote #1639912 was made by _RandomRequests on 10 Jul 2010 at 16:12:02 and was filed under requests.
 
Hello everyone!
I make:
-Backgrounds
-Fanart
-Fades
-And I can even turn your favorite witty quote into a picture that you can put on your profile!

Please, look at my page for details! Ohhkay, thanks!(:
Quote #1636415 was made by _RandomRequests on 09 Jul 2010 at 15:06:33 and was filed under requests.
delete quote
 
 
Hello everyone!
I make:
-Backgrounds
-Fanart
-Fades
-And I can even turn your favorite witty quote into a picture that you can put on your profile!

Please, look at my page for details! Ohhkay, thanks!(:
Quote #1636286 was made by _RandomRequests on 09 Jul 2010 at 14:29:19 and was filed under requests.
 
 
_uacct = "UA-427894-3"; urchinTracker(); var sc_project=1156915; var sc_invisible=1; var sc_security="e53b642e";
  1. _Random _Random
    posted a quote
    July 10, 2010 11:54pm UTC
    Hey! Can anyone help me? Please.
    Anyone who makes layouts or anything, how do you guys change the fonts of everything? Like on the side bar and the 'top quotes' area? I tried to and i just made a huge disaster on my profile and I can't fix it! Can anyone please tell me how to do this? I'd greatly appreciate it. Thanks<3(:

:)

Join · Top Quotes · New Quotes · Random · Chat · Add Quote · Rules · Privacy Policy · Terms of Use · Full Site
© 2003-2024 Witty Profiles