Skip to content
This repository was archived by the owner on Jul 17, 2019. It is now read-only.

Latest commit

 

History

History
22 lines (16 loc) · 552 Bytes

File metadata and controls

22 lines (16 loc) · 552 Bytes

Cross-browser code

Spotify Logo

You need to make this code cross-browser compatible in order to ship it for a variety of navigators.

Points: 2

Given the proposed piece of code: spotify-search.js

  • Make it cross-browser.
  • Needs to run correctly in IE>=8, Firefox, Safari and Chrome.
  • Note: No FW allowed to solve it ;)

Example of execution

SpotifySearch.album('foo', function(list) {
	document.body.appendChild(list);
});