Advertisement
Guest User

Untitled

a guest
Oct 30th, 2014
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <script type ="text/javascript">
  2. function OnSelectionChange(value)
  3. {
  4. var today = new Date();
  5. var oneYear = new Date(today.getTime() + 365 * 24 * 60 * 60 * 1000);
  6. var url = window.location.href;
  7. document.cookie = "lcid=" + value + ";path=/;expires=" + oneYear.toGMTString();
  8. window.location.href = url;
  9. }
  10. </script>
  11.  
  12. <a href="javascript:OnSelectionChange(1031)">German</a>
  13. <a href="javascript:OnSelectionChange(1033)">English</a>
  14.  
  15. OnSelectionChange(1033);
  16.  
  17. <a href="" onclick="OnSelectionChange(1033);">English</a>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement