Created
April 13, 2017 14:34
-
-
Save Meekohi/1dbdbca93f4237551c91818001b5c0b9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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