Sha256: 810fd56fa8dbfc01716b0754bd4e5e07efd9bbc553e4eaa4f454ba8f2c8b641e
Contents?: true
Size: 362 Bytes
Versions: 11
Compression:
Stored size: 362 Bytes
Contents
// A simple function to allow us to automatically submit forms for // pushing to other services such as EasyBib and RefWorks. jQuery(document).ready(function($) { submit_external_form(); // Automatically submit the form. function submit_external_form() { // Hide the page $("body").hide(); $form = $(".external_form"); $form.trigger("submit"); } });
Version data entries
11 entries across 11 versions & 2 rubygems