Its a random joke script. I don't think it uses javascript. I think it pulls jokes from a database randomly. I can code this kind of script very easily in PHP. You can contact me if you want the script to be coded for cheap
I don't know what the script is but I can make a custom one that is pretty much the exact same thing. If you're interested let me know.
this is so funny its ridiculous. first of all, you don't even need a mySQL database. <?php ########################################################################### # # # Copyright © Edward Wang # # ########################################################################### $quotes[] = 'Your first quote'; $quotes[] = 'Your second quote'; $quotes[] = 'etc...'; srand ((double) microtime() * 1000000); $random_number = rand(0,count($quotes)-1); echo ($quotes[$random_number]); ?> Code (markup): To add quotes, add $quotes[] = 'funny joke'; to the main line. To make a button that changes jokes every time, make the joke go to the page you're hosting ur script. Hope this helps, because I wasted 2 mins of my life