Advertisement
Guest User

Untitled

a guest
Aug 25th, 2015
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <script>
  2. $( document ).ready(function() {
  3. if(typeof window.orientation !== 'undefined') {
  4. // Mobil
  5. $("#button-id").attr("href", "http://ppd"); // aici pui link-ul de la ppd
  6. } else {
  7. $("#button-id").attr("href", "http://ppi"); // aici pui link-ul de la ppi
  8. }
  9. });
  10. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement