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!

link|improve this question

74% accept rate
feedback

1 Answer

up vote 2 down vote accepted

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();

});
link|improve this answer
jqtouch is obsolete. Use sencha.com or jquerymobile.com – angelcervera Oct 27 '10 at 5:44
Hey thanks for the code, the button still doesn't seem to function. Any other ideas? – Nelga Oct 27 '10 at 5:53
also - on jqtouch - not necessarily so, it's quite active on github, plus that would require rewriting the app. Also unfortunately jquery mobile is still only in alpha & doesn't have static tabbars/headers, and sencha is completely different - object oriented js. – Nelga Oct 27 '10 at 5:54
Remember add id in anchor tag. Test with firebug console opened. Any errors are showed? – angelcervera Oct 27 '10 at 5:56
Respect sencha and jquerymobile, you are right. But last beto of jqtouch is dated in October 2009. One year for a beta is a lot of time. In other hand, jqtouch is now part of "Sencha Lab", so is logic that jqtouch is not supported, no? – angelcervera Oct 27 '10 at 5:58
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.