Advertisement
salmancreation

ওয়েবসাইট redirect করার প্রয়োজন

Oct 9th, 2015
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. অনেক সময় আমাদের ওয়েবসাইট redirect করার প্রয়োজন হয়। অর্থাৎ মোবাইল এ http://m.facebook.com/ আর কম্পিউটার এ http://www.facebook.com/ এ ধরনের....................................
  2. এক্ষেত্রে আপনি জাভাস্ক্রিপ্ট এর নিচের কোড টুকু বুঝে প্রয়োজন অনুযায়ী পিক্সেল হিসাব করে ব্যবহার করুন । কাজ হবে আশাকরি ।
  3.  
  4. <script type= "text/javascript">
  5. if (screen.width <= 481) {
  6. document.location = "http://m.facebook..com/"
  7. }
  8. </script>
  9.  
  10. অথবা...............
  11.  
  12. <script type= "text/javascript">
  13. if (screen.width <= 481) {
  14. document.location = "http://m.facebook.com/"
  15. } else if (screen.width >= 1280) {
  16. document.location = "http://www.facebook.com/";
  17. }
  18. </script>
  19.  
  20. ধন্যবাদ সবাইকে...................................................।
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement