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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T00:15:11+00:00 2026-05-18T00:15:11+00:00

Can any anyone tell me why the example below doesn’t work: var obj =

  • 0

Can any anyone tell me why the example below doesn’t work:

var obj = $('#example');

function examplefunc(){
    obj.hide();
}

Whilst the second one works fine:

function examplefunc(){
    var obj = $('#example');

    obj.hide();
}

I know that the difference is obvious – in first example we have global variable, whilst in second we have local one. But yet another example shows that global string var i accessible inside the function:

var text = "Hello World!"

function examplefunc(){
    alert(text);
}

How can I make a global jQuery object variable visible inside the function in the first example? Is there any limitation of creating and using a global jQuery object? Any solutions?

  • 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-18T00:15:11+00:00Added an answer on May 18, 2026 at 12:15 am

    I would hazard my guess that you’re executing this line of code:

    var obj = $('#example');
    

    Before the element with ID of example is parsed into the DOM by the browser. You can work around it by moving your <script> element to below the #example element in your document, or you can make use of the document ready event:

    var obj;
    
    $(function () {  // This function is run after the document is parsed and ready
        obj = $('#example');
    });
    
    function examplefunc(){
        obj.hide();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can anyone tell help me understand the new CRUD scaffolding that is included with
The R language has a nifty feature for defining functions that can take a
I am fairly new to MVC so please don't hesitate to suggest a better/cleaner/simpler
I have a Windows Service developed in C# and .NET 3.5 to perform various
I am trying dynamically to append an <svg> element to an existing SVG island
I'm just learning Qt with C++. I have successfully implemented signals and slots to
I'm currently playing with a bar chart implemented through Open Flash Charts (I believe
I have a table user_name with 3 fields, id, Name, Email ( id is
I am playing about with the IQueryProvider.Execute command and am passing in an expression
I'm having a bit of trouble with a C# program I'm writing and it'd

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.