diff --git a/autosave.module b/autosave.module
index 7654ccd..ab8bbae 100644
--- a/autosave.module
+++ b/autosave.module
@@ -70,17 +70,12 @@ function autosave_save_access() {
  * Menu callback; return the autosave module settings form.
  */
 function autosave_admin_settings() {
-  if (!file_exists(AUTOSAVE_PATH .'/jquery.field.js')) {
-    drupal_set_message(t('Unable to find the jQuery Field Plugin in !path. Please <a href="http://plugins.jquery.com/files/jquery.field.js_4.txt">download jquery.field.js</a> 
-      and place it into !path.', array('!path' => $path)), 'error');
-  }
-
   $form['autosave_period'] = array(
     '#type' => 'textfield',
     '#title' => t('Autosave after this amount seconds has passed'),
     '#default_value' => variable_get('autosave_period', 10),
   );
-  
+
   $form['autosave_hidden'] = array(
     '#prefix' =>  '<div class="form-item"><label for="edit-autosave-hidden">'. t('Stealth Mode') . '</label>',
     '#type' => 'checkbox',
@@ -89,7 +84,7 @@ function autosave_admin_settings() {
     '#default_value' => variable_get('autosave_hidden', 0),
     '#suffix' => "</div>",
   );
-  
+
   return system_settings_form($form);
 }
 
