GetQueryString function

This is what I've got now and my proof of concept is working... Thanks for your help Xithis!function getQueryVariable(variable) { var query = window.location.search.substring(1); var pair = query.split("="); return pair[1]; }

Discussions have been disabled for this post