Skip to content

Instantly share code, notes, and snippets.

@xaviershay
Created January 10, 2009 19:06
Show Gist options
  • Select an option

  • Save xaviershay/45530 to your computer and use it in GitHub Desktop.

Select an option

Save xaviershay/45530 to your computer and use it in GitHub Desktop.
- if development?
%a#dev-fill-form{:href => ''} Fill form
%script
:plain
$(function () {
$('#dev-fill-form').click(function () {
data = {
email: '[email protected]',
name: 'Bogus McGee'
}
for (key in data) {
$('form').find('input[name="registration[' + key + ']"]').attr('value', data[key]);
}
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment