Skip to content

Instantly share code, notes, and snippets.

@Meekohi
Created April 13, 2017 14:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Meekohi/1dbdbca93f4237551c91818001b5c0b9 to your computer and use it in GitHub Desktop.
Save Meekohi/1dbdbca93f4237551c91818001b5c0b9 to your computer and use it in GitHub Desktop.
Your code:
var spinid = /arqball_([0-9a-z]*)/.exec("products/arqball_slv34stbg8zp.jpg");
console.log(spinid[1]);
$(document).ready(function(){
$(".main-image").append("<div id='spinBox' style='position:absolute; top:0px; width:408px; height:408px; z-index:-10;'><iframe src="https://spins0.arqsin.com/iframe.html?spin="+spinid[1]+"&is=-0.16" width="408" height="408" scrolling="no" frameborder="0"></iframe></div>");
});
Try instead:
var spinid = /arqball_([0-9a-z]*)/.exec("products/arqball_slv34stbg8zp.jpg");
console.log(spinid[1]);
$(document).ready(function(){
$(".main-image").append("<div id='spinBox' style='position:absolute; top:0px; width:408px; height:408px; z-index:-10;'><iframe src='https://spins0.arqsin.com/iframe.html?spin="+spinid[1]+"&is=-0.16' width='408' height='408' scrolling='no' frameborder='0'></iframe></div>");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment