| 
  • If you are citizen of an European Union member nation, you may not use this service unless you are at least 16 years old.

  • Whenever you search in PBworks or on the Web, Dokkio Sidebar (from the makers of PBworks) will run the same search in your Drive, Dropbox, OneDrive, Gmail, Slack, and browsed web pages. Now you can find what you're looking for wherever it lives. Try Dokkio Sidebar for free.

View
 

Lecture-jQuery-Firefly Cards Game with JSON

Page history last edited by Dr. Ron Eaglin 8 years, 7 months ago

 

Firefly Cards Game with JSON

 

Prerequisites

 

Lecture - jQuery Card Game - Serenity - Part 1 of this series

Lecture - Javascript - JSON - What is JSON

 

Summary

 

Removes the hard coded object data from the jQuery to an external file and then retrieves this file.

 

Video 

 

 

Reference Materials

 

http://jsfiddle.net/reaglin/odnqk9vv/ - JSFiddle of Code

http://api.jquery.com/jquery.getjson/ - Documentation for JSON

http://jsonlint.com/ - JSONLint validator for JSON

 

 

Additional Information

 

Firefly.json

{ 
    "cards" : [{ 
        "number":"1", 
        "name": "Mal"
    },{
        "number":"2",
        "name": "Zoe"
    },{
        "number":"3",
        "name":"Kaylee"
    },{
        "number": "4",
        "name": "Book"
    },{
        "number": "5",
        "name": "Simon"
    },{
        "number": "6",
        "name": "River"
    },{
        "number": "7",
        "name":"Jayne"
    },{
        "number": "8",
        "name": "Inara"
    },{
        "number": "9",
        "name": "Wash"}]
} 

 

 

 

 

COP 4813 Lectures

Comments (0)

You don't have permission to comment on this page.