infinite scrool does not work with jquerymobile.js file
I need infinitive scrool with my jquery mobile project
my infinitive scrool codes work well but when i added
jquery.mobile-1.2.0.min.js to my page the infinitive code does not works.
this is my code.This code does not work but When i remove
jquery.mobile-1.2.0.min.js it works
- <script src="https://ajax.googleapis.com/ajax
- /libs/jquery/1.7.2/jquery.min.js">
- </script>
-
- <script src="https://ajax.aspnetcdn.com/ajax/
- jquery.mobile/1.2.0/jquery.mobile-1.2.0.min.js">
- </script>
-
- <script type="text/javascript">
- $(window).scroll(function(){
- if($(window).scrollTop() == $(document).height()
- - $(window).height()){
-
- alert("it works");
- }
- });
- </script>