I'm creating a toolbar for my soon coming redesigned site Illing Spree and I want to make sure only the sites listed in the array "ill_members" will only load the bar, that way there's such things as an authorization. But I'm not exactly sure how to make these if statements. Can anyone help? :)
Also: This is all being written inside a JavaScript file, hence making a bootstrap so the other sites wouldn't go through the trouble of installing or working with upgrades.
var jQueryScriptOutputted=false;function initJQuery(){if(typeof jQuery=="undefined"){if(!jQueryScriptOutputted){jQueryScriptOutputted=true;document.write("<scr"+"ipt type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js'></scr"+"ipt>")}}else $(function(){})}initJQuery();
var ill_members = [
{name: "Illing Spree", link: "illingspree.com"},
{name: "WeAreRap.com", link: "wearerap.com"},
{name: "Gossip On Time", link: "gossipontime.com"}
];
var ill_music_members = [
{name: "WeAreRap.com", link: "wearerap.com"},
];
var dyno = "http://dyno.illingspree.com/toolbar/v0.1/";
var illBar = "<div id='illbar'><a id='illbar-logo' href='http://illingspree.com'></a></div>";
$(document).ready(function () {
$('head').append("<link rel='stylesheet' type='text/css' href='" + dyno + "tb.css'/>");
$('body').append(illBar);
});
I don't know why someone said useless, but it does have that pesky kernel driver bundled, and it's in perennial turmoil. When it goes bad, it goes very bad, and it's impossible to predict when it will due to system differences. I know that they're in the middle of development for a major new version that will include a completely new driver, one that they expect will largely solve the problem, but that's a ways out and it's unproven at this point.
Question
Mr.XXIV
I'm creating a toolbar for my soon coming redesigned site Illing Spree and I want to make sure only the sites listed in the array "ill_members" will only load the bar, that way there's such things as an authorization. But I'm not exactly sure how to make these if statements. Can anyone help? :)
Also: This is all being written inside a JavaScript file, hence making a bootstrap so the other sites wouldn't go through the trouble of installing or working with upgrades.
var jQueryScriptOutputted=false;function initJQuery(){if(typeof jQuery=="undefined"){if(!jQueryScriptOutputted){jQueryScriptOutputted=true;document.write("<scr"+"ipt type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js'></scr"+"ipt>")}}else $(function(){})}initJQuery(); var ill_members = [ {name: "Illing Spree", link: "illingspree.com"}, {name: "WeAreRap.com", link: "wearerap.com"}, {name: "Gossip On Time", link: "gossipontime.com"} ]; var ill_music_members = [ {name: "WeAreRap.com", link: "wearerap.com"}, ]; var dyno = "http://dyno.illingspree.com/toolbar/v0.1/"; var illBar = "<div id='illbar'><a id='illbar-logo' href='http://illingspree.com'></a></div>"; $(document).ready(function () { $('head').append("<link rel='stylesheet' type='text/css' href='" + dyno + "tb.css'/>"); $('body').append(illBar); });Link to comment
https://www.neowin.net/forum/topic/1110673-javascript-array-match/Share on other sites
6 answers to this question
Recommended Posts