tags:

views:

53

answers:

2

when your signed into google, and you search for anything you get the result back. you then have these buttons where you can bump the result up/down, or even delete it.

when you delete a result, it disappears and then you get this animated image of a cloud that disappears.

How do they inject that image before it disappears?

(BTW, I want to see that image, how can I find out the url to that image?)

A: 

Seems to me you could click the button, the entry would be replaced with a cloud-exploding gif, and then the result would be hidden. Maybe the id of that result would be associated with a "dont-show" list which itself is associated with your ipaddress/userid/session.

# Just an idea - untested
$(".result .deleteButton").click(function(){
  $(this)
    .parent()
    .html($(".cloud").clone())
    .fadeOut();
});
Jonathan Sampson
+2  A: 

Developer tools of any decent browser(Chrome, Firefox, Opera, Internet Explorer 8) are able to show you a detailed view of all HTTP requests.

http://www.google.com/images/swxa.png

arul
how'd u digg that up?
mrblah