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.
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.