diff --git a/js/zircon.js b/js/zircon.js
index c42bc87..4947903 100644
--- a/js/zircon.js
+++ b/js/zircon.js
@@ -5,18 +5,6 @@
   Drupal.behaviors.zircon = {
     attach: function (context, settings) {
       $('.btn-btt').smoothScroll({speed: 1000});
-      if($("#search-block-form [name='keys']").val() === "") {
-        $("#search-block-form input[name='keys']").val(Drupal.t("Keywords"));
-      }
-      $("#search-block-form input[name='keys']").focus(function() {
-        if($(this).val() === Drupal.t("Keywords")) {
-          $(this).val("");
-        }
-      }).blur(function() {
-        if($(this).val() === "") {
-          $(this).val(Drupal.t("Keywords"));
-        }
-      });
       $(window).scroll(function() {
         if($(window).scrollTop() > 200) {
             $('.btn-btt').show();
diff --git a/zircon.theme b/zircon.theme
index 3f3166d..ae84026 100644
--- a/zircon.theme
+++ b/zircon.theme
@@ -30,4 +30,13 @@ function zircon_preprocess_page(&$variables) {
   //$variables['logo'] = str_replace('.svg', '.png', $variables['logo']);
   //print_r($variables);
   //exit;
-}
\ No newline at end of file
+}
+
+/**
+* Implements hook_form_alter().
+*/
+function zircon_form_alter(&$form, \Drupal\Core\Form\FormStateInterface $form_state, $form_id) {
+  if('search_block_form' == $form_id){
+    $form['keys']['#attributes']['placeholder'][] = t('Search');
+  }
+}
