Skip to content

Instantly share code, notes, and snippets.

View reyaz's full-sized avatar

Reyaz Rohani reyaz

View GitHub Profile
@reyaz
reyaz / gist:ad7f21dd19d043f577c2
Last active December 16, 2015 23:30
Desk.com Widget URL Builder for OpenSky.com Contact Page
/* This script passes data from OpenSky.com's main JS object to Desk.com via
* query params for a customized contact form loaded in an iframe (yuck). */
/* Hide the iframe (if it’s not already hidden) */
$(document.getElementById('desk-contact-iframe')).addClass('is-hidden');
// http://www.joezimjs.com/javascript/3-ways-to-parse-a-query-string-in-a-url/
var parseQueryString = function( queryString ) {
var params = {}, queries, temp, i, l;