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 7607487
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T00:40:32+00:00 2026-05-31T00:40:32+00:00

Since few hours I tried to make a script which will show a div

  • 0

Since few hours I tried to make a script which will show a div when the window.location.hash is set up. When the page is ready the script works but when I try to call it with jQuery event .click() it doesnt work.

The code:

var bodyHeight = $('body').height();
$(asd);
function asd() {
locationHash = window.location.hash.replace(/^#!/, '');
if(locationHash != "") {
    $('div#bgLayer').css({
        'height': bodyHeight,
        'display': 'block'
    });
    $('div#feedBack').css('display', 'block');
    $('div#bgLayer, div#feedBackRight').click(function() {
        var clientName = "";
        var clientEmail = "";
        var clientWebsite = "";
        var clientImage = "";
        var clientFeedBack = "";
        $('div#bgLayer').css('display', 'none');
        $('div#feedBack').css('display', 'none');
        $('div#feedBacks').css('display', 'block');
        $('div#feedBackForm').css('display', 'none');
        $('a#showFeedBacks').css('font-weight', 'bold');
        $('h3#clientsAboutUs').css('display', 'inline-block');
        $('h3#addFeedBackAboutUs').css('display', 'none');
        $('div.pages').css('display', 'block');
        $('a#addFeedBack').css('font-weight', 'normal');
        window.location.hash = '!';
    });
    if(locationHash == 'addFeedBack') {
        $('div#feedBacks').css('display', 'none');
        $('h3#clientsAboutUs').css('display', 'none');
        $('h3#addFeedBackAboutUs').css('display', 'inline-block');
        $('div.pages').css('display', 'none');
        $('div#feedBackForm').css('display', 'block');
        $('a#showFeedBacks').css('font-weight', 'normal');
        $('a#addFeedBack').css('font-weight', 'bold');
        $('input#submitFeedBack').attr('disabled', 'disabled');
    }
    else if(locationHash == 'showFeedBacks') {
        $('div#feedBackForm').css('display', 'none');
        $('h3#clientsAboutUs').css('display', 'inline-block');
        $('h3#addFeedBackAboutUs').css('display', 'none');
        $('div.pages').css('display', 'block');
        $('div#feedBacks').css('display', 'block');
        $('a#addFeedBack').css('font-weight', 'normal');
        $('a#showFeedBacks').css('font-weight', 'bold');
    }
}
}
$('#addFeedBack-page').click(asd);

The #addFeedBack-page is:

<a href="#!addFeedBack" id="addFeedBack-page" class="buttons" title="Click me">Click me</a>

So how to make it right?

Best regards,
George!

  • 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-31T00:40:33+00:00Added an answer on May 31, 2026 at 12:40 am
    var bodyHeight = $('body').height();
    $(document).ready(function () {
         asd();
         $('#addFeedBack-page').click(function(){
    
            asd();
    
         });
    });
    
    function asd() {
    locationHash = window.location.hash.replace(/^#!/, '');
    if(locationHash != "") {
        $('div#bgLayer').css({
            'height': bodyHeight,
            'display': 'block'
        });
        $('div#feedBack').css('display', 'block');
        $('div#bgLayer, div#feedBackRight').click(function() {
            var clientName = "";
            var clientEmail = "";
            var clientWebsite = "";
            var clientImage = "";
            var clientFeedBack = "";
            $('div#bgLayer').css('display', 'none');
            $('div#feedBack').css('display', 'none');
            $('div#feedBacks').css('display', 'block');
            $('div#feedBackForm').css('display', 'none');
            $('a#showFeedBacks').css('font-weight', 'bold');
            $('h3#clientsAboutUs').css('display', 'inline-block');
            $('h3#addFeedBackAboutUs').css('display', 'none');
            $('div.pages').css('display', 'block');
            $('a#addFeedBack').css('font-weight', 'normal');
            window.location.hash = '!';
        });
        if(locationHash == 'addFeedBack') {
            $('div#feedBacks').css('display', 'none');
            $('h3#clientsAboutUs').css('display', 'none');
            $('h3#addFeedBackAboutUs').css('display', 'inline-block');
            $('div.pages').css('display', 'none');
            $('div#feedBackForm').css('display', 'block');
            $('a#showFeedBacks').css('font-weight', 'normal');
            $('a#addFeedBack').css('font-weight', 'bold');
            $('input#submitFeedBack').attr('disabled', 'disabled');
        }
        else if(locationHash == 'showFeedBacks') {
            $('div#feedBackForm').css('display', 'none');
            $('h3#clientsAboutUs').css('display', 'inline-block');
            $('h3#addFeedBackAboutUs').css('display', 'none');
            $('div.pages').css('display', 'block');
            $('div#feedBacks').css('display', 'block');
            $('a#addFeedBack').css('font-weight', 'normal');
            $('a#showFeedBacks').css('font-weight', 'bold');
        }
    }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Since a few hours, I want to make a decent tooltip in JQuery. It's
Here is the code that cause me problem since few hours: TabItem newTab =
Yesterday and for about months I was able to push/commit. But since few hours
I'm struggling since a few hours with this design question. In Cocoa for example,
This has stumped me for a few hours now, since I cannot see any
Since a few days ago, MySQL server on my Windows machine was not successful
Since a few months I've been learning Erlang, and now it was time to
Silverstripe is running on my since a few weeks. Recently, I get an Internal
It's been a few years since my computer-language class and so I've forgotten the
Since it came out a few days ago, I am sure at least some

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.