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