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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T21:42:56+00:00 2026-05-17T21:42:56+00:00

I recently created an xml feed -> html javascript function for an iPhone app

  • 0

I recently created an xml feed -> html javascript function for an iPhone app I’m developing in jQTouch. Original Tutorial & Code.

I was wondering if someone would know a quick and easy way to refresh the xml data (grab the feed again) when a link is clicked.

eg.
in the code:

<div id="btns">
 <ul>
  <li><a href="#feed">Go to feed</a></li> <!-- When i click this, I want the getDataFeed function to dump the data & rerun. -->
</div>
<div id="feed">
 <div id="content_from_feed_inserted_here"></div>
</div>

in the javascript:

$(document).ready(function() {

function getDataFeed() {

    $('.loadingPic').show(); // show progress bar

    $.get('http://xxxxxxx.com/information.xml', function(d) {

    $(d).find('location').each(function(){

        var $location = $(this); 
        var the_data = $location.find('xml_data').text();

        var collected_data = collected_data += '<span>' + the_data + '</span>' ;
        $('#content_from_feed_inserted_here').empty().append($(collected_data)); // empty div first

        $('.loadingPic').fadeOut(1400); // remove progress bar
    });

}

// run on page load
getDataFeed();

// how do i also get it running when i click <li><a href="#feed">Go to feed</a></li>

});

Many thanks in advance for your help!

  • 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-17T21:42:56+00:00Added an answer on May 17, 2026 at 9:42 pm

    Test this:
    Move function getDataFeed() {..} outside de ready function and capture click event from link. set id=”feed” in <a>.

    function getDataFeed() {
    
        $('.loadingPic').show(); // show progress bar
    
        $.get('http://xxxxxxx.com/information.xml', function(d) {
    
        $(d).find('location').each(function(){
    
            var $location = $(this); 
            var the_data = $location.find('xml_data').text();
    
            var collected_data = collected_data += '<span>' + the_data + '</span>' ;
            $('#content_from_feed_inserted_here').empty().append($(collected_data)); // empty div first
    
            $('.loadingPic').fadeOut(1400); // remove progress bar
        });
    }
    
    $(document).ready(function() {
    
        // how do i also get it running when i click <li><a href="#feed" id="#feed">Go to feed</a></li>
        $('#feed').click(getDataFeed);
    
        // run on page load
        getDataFeed();
    
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've recently created these two (unrelated) methods to replace lots of boiler-plate code in
Developing a heavily XML-based Java-application, I recently encountered an interesting problem on Ubuntu Linux.
I'm a pretty new C# and .NET developer. I recently created an MMC snapin
I started a Rails project recently and decided to use RESTful controllers. I created
I've recently been trying to create units tests for some legacy code. I've been
I recently came across this in some code - basically someone trying to create
I have recently created a web project in Java using eclipse. I have a
I am developing a web app using ASP.NET 2.0 (C#), where on home page
I recently started with the BAM from BizTalk. I created a simple orchestration. I
I recently created a (C#) project with Visual Studio (2010) and used some Settings

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.