jquery .get not getting [closed]

You are missing the document ready:

$( document ).ready(function() {
     $.get( .....

});

Since the ui-content div isn’t loaded yet there is no place to display the data.

Leave a Comment