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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T09:57:30+00:00 2026-06-05T09:57:30+00:00

New to jQuery and having simple yet confusing problem. ha2. I am writing this

  • 0

New to jQuery and having simple yet confusing problem. ha2.

I am writing this normal javascript function with jQuery function reading xml file. How do I assigned value to the prodPrice variable declared on the top? the script keep returning 0 value, but if I alert the value within the jQuery function, I managed to get the value that I wanted.

Thank you guys.

function getPrice(valprodID)
{
    var prodPrice=0;

    jQuery.ajax({
        type: "GET",
        url: "products.xml",
        dataType : "xml",
        success : function(xml)
        {
            jQuery(xml).find('prod').each(function(){
                var prodID = jQuery(this).find('prodID').text();
                if(prodID == valprodID)
                {
                    prodPrice = jQuery(this).find('prodPrice').text(); 
                    return false;
                }
            });                
        }
    })

    return prodPrice;
}
  • 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-06-05T09:57:32+00:00Added an answer on June 5, 2026 at 9:57 am

    you can do asynchronous as reported by @xdazz, as @zerkms indicated with Deferred, or anonymous functions:

    function getPrice(valprodID, fn)
    {
        var prodPrice=0;
        jQuery.ajax({
            type: "GET",
            url: "products.xml",
            dataType : "xml",
            success : function(xml)
            {
                jQuery(xml).find('prod').each(function(){
                    var prodID = jQuery(this).find('prodID').text();
                    if(prodID == valprodID)
                    {
                        prodPrice = jQuery(this).find('prodPrice').text(); 
                        fn(prodPrice);
                    }
                });                
            }
        })
    
    }
    
    getPrice(1, function(prodPrice) {
    
       /* your code */
    
    })
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm new to jquery and having a problem using .delegate() to bind a function
I am new to jquery and I am having a problem with displaying a
I have a really simple jQuery problem (I guess). But im totally new to
I am very new to this javascipt, jquery world and I am having great
I'm having a few issues getting a simple JQuery function to work that fades
This is my jquery for a simple drop-down-esq menu. I'm having trouble, though. I
I'm new to the wold of javascript/jquery, but had this fantastic idea for an
I'm fairly new to jQuery and I'm having trouble with an animation that I'd
I am new with jQuery and I'm having a hard time getting my page
I'm a bit new to jQuery and I am having trouble setting up a

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.