Skip to content Skip to sidebar Skip to footer

Add
  • Dynamically Reading From A Folder Photoswipe Purpose
  • Sorry for my English, I am a new to jquery mobile and only have basic knowledge about javascript languages in general; I was playing around with a single page website mobile ( I us

    Solution 1:

    You should use pageinit and pagebeforeshow Instead of $(document).ready. Also .live() method is deprecated. Use .on() to attach event handlers. Users of older versions of jQuery should use .delegate() in preference to .live(). http://api.jquery.com/live/

    Append list Items: $("#PhotoList").append('<li><a href="..

    When you finish refresh the list to display your new list: $('#PhotoList').listview('refresh');

    Update:

    I use php programs on my server in order to retrieve json strings. Something like this...

    xhr = newXMLHttpRequest();
    xhr.open("GET","http://192.168.100.2/sr/quotelisttest?name="+s,true);                  
    xhr.send("");
    
    
    
    xhr.onreadystatechange = function() {
    if (xhr.readyState === 4){
        alert(xhr.readyState);
        alert(xhr.responseText);
    
        var v = JSON.parse(xhr.responseText);
    

    Post a Comment for "Add
  • Dynamically Reading From A Folder Photoswipe Purpose"