Created
November 17, 2014 15:16
-
-
Save rickcnagy/75ef9f5d2e093be80225 to your computer and use it in GitHub Desktop.
Customize a QS application/inquiry form via jQuery/JS
This file contains 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
var loadingForQS = setInterval(function() { | |
if (typeof _qs$ !== "undefined" && _qs$(".qslabel").length) { | |
clearInterval(loadingForQS); | |
qsCustomize(_qs$) | |
} | |
}); | |
function qsCustomize($) { | |
// do something | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment