Skip to content

Instantly share code, notes, and snippets.

@cdeutsch
Created May 2, 2014 17:40
Show Gist options
  • Save cdeutsch/00b232086dfd9c7380bc to your computer and use it in GitHub Desktop.
Save cdeutsch/00b232086dfd9c7380bc to your computer and use it in GitHub Desktop.
$('form.filter-bots').on('submit', function (e) {
var $form = $(this);
var $botCode = $form.find('#BotCode');
if ($botCode.length === 0) {
$botCode = $('<input id="BotCode" name="BotCode" value="" type="hidden" />');
$form.prepend($botCode);
}
$botCode.val('RzipU6QGMMNh7d');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment