JQuery mobile data transition does not work

I am trying to create a button with a data transition, but it does not work. Here is my code:

<link rel="stylesheet" href="jq/jquery.mobile-1.0.1.min.css" /> <script src="jq/jquery.js" type="text/javascript"></script> <script src="jq/jquery-ui.js"></script> <script src="jq/jquery.mobile-1.0.1.min.js"></script> <a href="pelis.html" data-role="button" data-rel="dialog" data-transition="pop" data-inline="true">dialog</a> 

When I press the button, the effect does not work ... What am I doing wrong? Thanks!

+4
source share
1 answer

Are you using IE9 for testing? I pulled my hair out until I realized that IE9 cannot make transitions. When I switched to chrome, the transitions worked.

+3
source

Source: https://habr.com/ru/post/1401896/


All Articles