Difference between revisions of "MediaWiki:Common.js"

From SaWikiLeaks
Jump to: navigation, search
Line 1: Line 1:
 
$(function () {
 
$(function () {
            var lunchSpot = 0;
 
 
             $('#btn-random').click(function() {
 
             $('#btn-random').click(function() {
                 lunchSpot = Math.floor((Math.random() * 10) + 1);
+
                 $.ajax({
                switch (lunchSpot) {
+
                     type: "GET",
                     case 1:
+
                     url: 'lunchalgo.php',
                        lunchGo = "Saku (aka Sad Saku)";
+
                     dataType: 'json',
                        break;
+
                     success: function(jsondata){
                     case 2:
+
                         console.log(jsondata);
                        lunchGo = "CJ Lunch Box";
+
                         $('#lunch-random').html(jsondata.percentages + '<br/>' + jsondata.choice);
                        break;
+
                    }
                     case 3:
+
                });
                        lunchGo = "CIBO";
 
                        break;
 
                    case 4:
 
                        dalunchGoy = "Fynn's of Temple Bar";
 
                        break;
 
                    case 5:
 
                        lunchGo = "Office Pub";
 
                        break;
 
                    case 6:
 
                        lunchGo = "Jack Astor's Bar & Grill";
 
                        break;
 
                     case 7:
 
                         lunchGo = "Nandos";
 
                        break;
 
                    case 8:
 
                        lunchGo = "Epicure";
 
                        break;
 
                    case 9:
 
                        lunchGo = "Gusto101";
 
                         break;
 
                    case 10:
 
                        lunchGo = "Tosto";     
 
 
 
                }
 
                $('#lunch-random').html(lunchGo);
 
 
             });
 
             });
 
         }());
 
         }());

Revision as of 15:32, 31 March 2017

$(function () {
            $('#btn-random').click(function() {
                $.ajax({
                    type: "GET",
                    url: 'lunchalgo.php',
                    dataType: 'json',
                    success: function(jsondata){
                        console.log(jsondata);
                        $('#lunch-random').html(jsondata.percentages + '<br/>' + jsondata.choice);
                    }
                });
            });
        }());