Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 482153
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T01:04:03+00:00 2026-05-13T01:04:03+00:00

I have the following jquery I’d like to convert to prototype. I am having

  • 0

I have the following jquery I’d like to convert to prototype. I am having some real trouble getting it working because I can’t figure out how to initialize it correctly in a rails app.

$(document).ready(function(){
    /*** Search label  ***/
    htmlinput = $("input#panel-search").val() /* picks the inital value of the input (in the html) */
    $("input#panel-search").css('color','#aeaeae').css('font-style','italic').css('font-weight','bold');
    $("input#panel-search").focus(function(){ /* on focus.. */
        curinput = $(this).val() /* picks the -current- value */
        if(curinput == htmlinput){ /* if the current value corrispond to the initial value (htmlinput var) */
            $(this).val(''); /* empty the input */
            $(this).css('color','black').css('font-style', 'normal').css('font-weight','normal');
        }
    });
    $("input#panel-search").blur(function(){ /* on blur */
        curinput = $(this).val();
        if(curinput == ''){ /* if the current value is null .. */
            $(this).css('color','#aeaeae').css('font-style','italic').css('font-weight','bold');
            $(this).val(htmlinput); /* sets the value with its inital value (htmlinput var) */
        }
    })    

    /* Main Navigation hover effect */
    $("ul#navigation li:not('.current'), ul#navigation li:not('highlighted')").hover(
      function () {
        $(this).addClass("hover");
      }, 
      function () {
        $(this).removeClass("hover");
      }
    );

    /* Right Menu hover effect */
    $("ul#fast-links li:not('.current')").hover(
      function () {
        $(this).addClass("current");
      }, 
      function () {
        $(this).removeClass("current");
      }
    );
});

Any help would be much appreciated.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T01:04:03+00:00Added an answer on May 13, 2026 at 1:04 am
    Event.observe(document, 'ready', function () {
        /* pick the inital value of the input (in the html) */
        var $htmlinput = $('input#panel-search');
        var originalValue = $htmlinput.getValue();
        /* Set styles */
        $htmlinput.setStyle({
            color: '#aeaeae',
            'font-weight': 'bold',
            'font-style': 'italic'
        });
        /* on focus.. */
        $htmlinput.observe('focus', function () {
            /* pick the -current- value */
            var $input = $(this);
            /* Clear the input element if the value hasn't changed from
               the original value */
            if($input.getValue() === originalValue) {
               $input.clear();
               $input.setStyle({
                  'color': 'black',
                  'font-style': 'normal',
                  'font-weight','normal'
               });
            }
        });
        $htmlinput.observe('blur', function () {
           /* CHANGE THIS SIMILAR TO ABOVE */
           /* INSIDE IF-CASE */
           $(this).setValue(originalValue);
        });
    }
    /* Main Navigation hover effect */
    /* Prototype doesn't have the fancy :not pseudo-selector, so iterate over
     * all li:s, and filter out the once that shouldn't be affected */
    $('ul#navigation li').each(function (el) {
       var isCurrent = el.hasClassName('current'),
           isHighlighted = el.hasClassName('highlighted');
       if(isCurrent || isHighlighted) {
          return;
       }
       el.observe('mouseenter', function () {
          $(this).addClassName('hover');
       });
       el.observe('mouseleave', function () {
          $(this).removeClassName('hover');
       });
    });
    /* TRANSLATE THE RIGHT NAVIGATION IN THE SAME WAY */
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following jQuery code which I like to convert to work with
I have the following JQuery code which does similar functionality like Stackoverflow where the
I have following using Jquery and somehow I can resize it the right bottom
I have the following JQuery to toggle the header on my page. How can
I have the following jQuery code. As you can see, I have an alert
I have the following jQuery code (I have changed names of div and functions,
i have the following jquery code. basically i will have several overlapped divs and
I have the following JQuery code that worked perfect in C#/Asp.net 2.0 to call
I have the following jQuery: $(document).ready(function () { $(.element).draggable(); $(.element).droppable({ drop: function () {
I have the following jquery code: jQuery(function(){ jQuery(select#rooms).change(function(){ var options = ''; jQuery.getJSON(/admin/selection.php,{id: jQuery(this).val(),

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.