I really hope someone can help me with my problem. Because I am really stuck rightnow. I am trying to do a wepApp with jQTouch. The truble I am having is loading data from a mysql Database. It used to work but then I updated the jQTouch Package to add on some extensions. So now the wierdest thing is happening. When I load the external data with the safari on the iPhone the mysql data want be loaded. But if I add the page to the homescrean of the iPhone it works. How is this possible?

Anyway, here is the code:

$(document).ready(function() {
 $("#admin li.arrow a, #kauf #adminAll, #tech #techAll, #dienst #dienstAll, #verkauf li.arrow a, #verkauf li.arrow a, #finanz li.arrow a, #informatik li.arrow a, #masch li.arrow a, #bau li.arrow a, #gewerbe li.arrow a, #med li.arrow a, #lebensmittel li.arrow a").tap(function (){
  var linkId = $(this).attr("id");
  //alert(linkId);
  $('#liste').empty(); 
  $.ajax({
    type: "GET",
    //cache: "false",
    url: "listJobs.php",
    data: "ajaxget=" + linkId,
     success: function(data) {
      //$("#liste").load(data);
      jQT.goTo('#liste');
    }
  });
   return false;
});     
});         

I also tryed to write a tap function, but I had no success on that. So If anyone could give me a pointer on that, I would also highly aprechiate it.

And here the php:

        <div class="toolbar">
         <h1>smart personal</h1>


<?
$kat=$_GET["ajaxget"];

echo  "<a class='back slide'>Zurück</a>
        <a class='button flip' id='infoButton' href='#home'>Home</a>
    </div>
    <div class='s-scrollwrapper' momentum='false' vScrollbar='false'>
      <div>";

echo "<ul class='rounded'>";
echo "<li class='suche'>Ihre Suche ergab <span class='zahl'>$numrows</span> Treffer</li>";





while($row = mysql_fetch_array($resultOutput)) {

$id=($row['stelleID']);
$datumsanzeige=($row['stelleDatumsanzeige']);
$datum=(date("d.m.y", strtotime($row["stelleDatum"])));
$today = date("d.m.y");

if($datumsanzeige == "fake")
    {
    $datumDef = "$today";
    }
  else
    {
    $datumDef = "$datum";
    }


// Print out the contents of each row into a table
    echo "<li><a href='stellenDetailiPhone.php?stelleID=$id'>";
    echo $row['stellePosition'];
    echo "</a><a class='nobg slide' href='stellenDetailiPhone.php?stelleID=$id'>";
    $stelleIDDetail = $row['stelleID'];
    $text=strip_tags (html_entity_decode($row['stelleStellenbeschrieb']));
// 0,100 show 100 Zeichen
    echo substr($text,0,50);
    echo "</a></li>";
    } 


echo "</ul></div></div>";

echo mysql_error();
mysql_close($con);
link|improve this question
You should also post the relevant PHP – Michael Jun 4 '11 at 13:13
feedback

1 Answer

It looks like your jQuery bit is not doing anything with the data returned via AJAX:

First things first, check whether any data is being returned by the AJAX call.

1) Go to the URL directly in your browser and look at the results. If all looks good there, then...

2) Adjust your jQTouch bit to:

$(document).ready(function(){

  $("#admin li.arrow a, #kauf #adminAll, #tech #techAll, #dienst #dienstAll, #verkauf li.arrow a, #verkauf li.arrow a, #finanz li.arrow a, #informatik li.arrow a, #masch li.arrow a, #bau li.arrow a, #gewerbe li.arrow a, #med li.arrow a, #lebensmittel li.arrow a")
    .tap(function(){
      var linkId = $(this).attr("id");
      //alert(linkId);
      $('#liste').empty();
      $.ajax({
      type: "GET",
      //cache: "false",
      url: "listJobs.php",
      data: "ajaxget=" + linkId,
      success: function(data) {
        console.log( data );
        //$("#liste").load(data);
        jQT.goTo( '#liste' );
      }
    });
    return false;
  });

});

And test it with your (assumedly iPhone/iPod/iPad's) Debug Console on - go to Settings > Safari > Developer > Debug Console to ON. If the AJAX action is called, and data is returned, you should see a message at the top of the browser window.

Also, you are using (or have commented out) a call using the jQuery $.load() function. That function basically does the AJAX action for you, you simply give it the container to fill and the URL (and optionally element) to fill it with. So you might find the following will do the job just as easily:

$(document).ready(function(){

  $("#admin li.arrow a, #kauf #adminAll, #tech #techAll, #dienst #dienstAll, #verkauf li.arrow a, #verkauf li.arrow a, #finanz li.arrow a, #informatik li.arrow a, #masch li.arrow a, #bau li.arrow a, #gewerbe li.arrow a, #med li.arrow a, #lebensmittel li.arrow a")
    .tap(function(){
      $("#liste").load( 'listJobs.php?ajaxget='+$(this).attr("id") );
    return false;
  });

});

As I mentioned earlier, it looks like your #liste element is being emptied, but no new content is being added through the AJAX call - you are simply moving to that element if/when the AJAX call is successful.

Anyway, it's a start for you to be able to continue debugging/troubleshooting.

link|improve this answer
Hi Lucanos Thank you for answering. I tested the code in Firefox with firebug and everything worked fine, with no error. Then I changed it to the tap function. And with safari on mobile with the dev thing on top I just get a whole bunch of console notification from the jqt.bars.js . But it want work at all with the tap function. – Rilana Jun 4 '11 at 14:16
I really do like the second code option! That would be simpler and cool if it would work, but as soon as I use tap things dont seem to work for me at all...??? – Rilana Jun 4 '11 at 14:23
Sorry, me again! If I use click unstead of .tap then it works with your second option, but once again only with the on the home screen saved icon, not directly in safari and it seems to jump, it kind of loads and then reloads to get the info... – Rilana Jun 4 '11 at 14:28
Still trying to find a solution, played arround with .tap and found out that now even a simple alert woks with .tap. I also found out that the previous code works in mobile safari if I remove <script src="extensions/jqt.bars/jqt.bars.js" type="application/x-javascript" charset="utf-8"></script> So it must have something to do with that extension. Does this sound logic to anyone? Please help. Or does anyone know of a better solution to include a footer tap bar? Thank you for your help! Rilana – Rilana Jun 4 '11 at 19:52
feedback

Your Answer

 
or
required, but never shown

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