Simple JSON

Developer
Size
2,247 Kb
Views
30,360

How do I make an simple json?

Simple JSON callback to flickr api public stream.. What is a simple json? How do you make a simple json? This script and codes were developed by Brad Bodine on 11 August 2022, Thursday.

Simple JSON Previews

Simple JSON - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Simple JSON</title> <script src="http://s.codepen.io/assets/libs/modernizr.js" type="text/javascript"></script> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div class="images"></div> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

Simple JSON - Script Codes CSS Codes

body { background: #1e1e1e; position: relative;
}
.images { background: #333; width: 75%; margin: 20px auto; padding: 10px;
}
.images img { height: 200px; margin: 2px 2px 0 0; border: 4px solid #fff;
}

Simple JSON - Script Codes JS Codes

$(function() { var flickerAPI = "http://api.flickr.com/services/feeds/photos_public.gne?jsoncallback=?"; $.getJSON( flickerAPI, { tags: "flower", tagmode: "any", format: "json" }).done(function( data ) { $.each( data.items, function( i, item ) { $( "<img>" ).attr( "src", item.media.m ).appendTo( ".images" ); if ( i === 6 ) { return false; } }); });
});
Simple JSON - Script Codes
Simple JSON - Script Codes
Home Page Home
Developer Brad Bodine
Username bbodine1
Uploaded August 11, 2022
Rating 3
Size 2,247 Kb
Views 30,360
Do you need developer help for Simple JSON?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Brad Bodine (bbodine1) Script Codes
Create amazing video scripts with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!