Link in jquery mobile

Link in jquery mobile

Hi guys,

I have this resource

  1.  <div data-role="footer" data-position="fixed"  data-theme="b">
                    <a href="listingresults.html" data-role="button" data-theme="b" data-icon="search" id="results">
                        <span class="ui-btn-text">Results</span>
                    </a>
                </div>



in listingsresults.html i have an alert message but this message isn't works, I must refresh the page for the alert shows.
  1. $(document).on('pageinit', function(){
      alert('test');
    });

Thanks