diff --git a/public/opac/java/search_autocomplete/search_autocomplete.js b/public/opac/java/search_autocomplete/search_autocomplete.js
new file mode 100644
index 0000000000000000000000000000000000000000..336307b3bfa8eda4f75136d633bb20764c6b12bd
--- /dev/null
+++ b/public/opac/java/search_autocomplete/search_autocomplete.js
@@ -0,0 +1,37 @@
+/**
+ * Copyright (c) 2014, Agence Française Informatique (AFI). All rights reserved.
+ *
+ * AFI-OPAC 2.0 is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by
+ * the Free Software Foundation.
+ *
+ * There are special exceptions to the terms and conditions of the AGPL as it
+ * is applied to this software (see README file).
+ *
+ * AFI-OPAC 2.0 is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
+ * along with AFI-OPAC 2.0; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA 
+ */
+(function ( $ ) {
+  $.fn.search_autocomplete = function (options) {
+    var node = $(this);
+    var datas = {};
+    datas[options.data] = node.val();
+    node.autocomplete({
+      source: function(query, response) {
+        $.ajax({
+	  url: options.url,
+	  dataType: 'json',
+	  data: datas,
+	  success: function(data) {response(data);}
+	});
+      }
+    });
+  };
+} (jQuery));
+
diff --git a/public/opac/java/search_autocomplete/tests/search_autocomplete.html b/public/opac/java/search_autocomplete/tests/search_autocomplete.html
new file mode 100644
index 0000000000000000000000000000000000000000..221a0904b3b135e0070b538117ac34adae440015
--- /dev/null
+++ b/public/opac/java/search_autocomplete/tests/search_autocomplete.html
@@ -0,0 +1,38 @@
+<!DOCTYPE html>
+<!--
+/**
+ * Copyright (c) 2012, Agence Française Informatique (AFI). All rights reserved.
+ *
+ * AFI-OPAC 2.0 is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by
+ * the Free Software Foundation.
+ *
+ * There are special exceptions to the terms and conditions of the AGPL as it
+ * is applied to this software (see README file).
+ *
+ * AFI-OPAC 2.0 is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
+ * along with AFI-OPAC 2.0; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA 
+ */
+-->
+<html>
+<head>
+  <meta charset="utf-8">
+  <title>QUnit tests</title>
+  <link rel="stylesheet" href="http://code.jquery.com/qunit/qunit-git.css">
+</head>
+<body>
+  <div id="qunit"></div>
+  <div id="qunit-fixture"></div>
+  <script src="../../../../admin/js/jquery-1.8.3.min.js"></script>
+  <script src="../../../../admin/js/jquery_ui/jquery-ui-1.10.3.full.js"></script>
+  <script src="../search_autocomplete.js"></script>
+  <script src="http://code.jquery.com/qunit/qunit-1.13.0.js"></script>
+  <script src="search_autocomplete_test.js"></script>
+</body>
+</html>
diff --git a/public/opac/java/search_autocomplete/tests/search_autocomplete_test.js b/public/opac/java/search_autocomplete/tests/search_autocomplete_test.js
new file mode 100644
index 0000000000000000000000000000000000000000..3e0d8000b806510cd5d49114bb458d2e1a99ff62
--- /dev/null
+++ b/public/opac/java/search_autocomplete/tests/search_autocomplete_test.js
@@ -0,0 +1,51 @@
+/**
+ * Copyright (c) 2014, Agence Française Informatique (AFI). All rights reserved.
+ *
+ * AFI-OPAC 2.0 is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by
+ * the Free Software Foundation.
+ *
+ * There are special exceptions to the terms and conditions of the AGPL as it
+ * is applied to this software (see README file).
+ *
+ * AFI-OPAC 2.0 is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
+ * along with AFI-OPAC 2.0; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA 
+ */
+var fixture;
+var options = null;
+QUnit.module('search_autocomplete', {
+  setup: function() {
+    jQuery.ajax = function (param) {
+      options = param;
+    }
+
+    fixture = $('<input class="expressionRecherche" name="q" type="text" value="top" />');
+    
+    fixture.search_autocomplete({url : 'my_bokeh/recherche/suggestajax',
+				 dataType : 'json',
+				 data : 'startsWith'});
+    fixture.autocomplete('search');
+  }
+});
+
+
+test('autocomplete should call ajax with correct url', function() {
+  equal(options.url, 'my_bokeh/recherche/suggestajax');
+});
+
+
+test('autocomplete should call ajax with correct data', function() {
+  equal(options.data.startsWith, 'top');
+});
+
+
+test('autocomplete should call ajax with correct data type', function() {
+  equal(options.dataType, 'json');
+});
+
diff --git a/tests/js/SearchAutocompleteTest.php b/tests/js/SearchAutocompleteTest.php
new file mode 100644
index 0000000000000000000000000000000000000000..44976b36456f10bf83ac5f0c0937176e0762cf09
--- /dev/null
+++ b/tests/js/SearchAutocompleteTest.php
@@ -0,0 +1,32 @@
+<?php
+/**
+ * Copyright (c) 2012-2014, Agence Française Informatique (AFI). All rights reserved.
+ *
+ * AFI-OPAC 2.0 is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by
+ * the Free Software Foundation.
+ *
+ * There are special exceptions to the terms and conditions of the AGPL as it
+ * is applied to this software (see README file).
+ *
+ * AFI-OPAC 2.0 is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
+ * along with AFI-OPAC 2.0; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA 
+ */
+
+
+class SearchAutocomplete extends PHPUnit_Framework_TestCase {
+
+
+	/** @test */
+	public function searchAutocompleteJStestShouldSuccess() {
+		exec('phantomjs ' . ROOT_PATH . 'tests_js/lib/qunit-phantomjs-runner/runner.js ' . ROOT_PATH . 'public/opac/java/search_autocomplete/tests/search_autocomplete.html', $output, $result);
+		$this->assertEquals(0, $result, implode("\n", $output));
+	}
+}
+?>
\ No newline at end of file