Advertisement
Guest User

Untitled

a guest
Jun 27th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. final LabelField label = new LabelField("http://www.google.com",LabelField.FOCUSABLE){
  2. public boolean navigationClick (int status , int time){
  3. BrowserSession bSession = Browser.getDefaultSession();
  4. bSession.displayPage(label.getText());
  5. return true;
  6. }
  7. };
  8.  
  9. <html>
  10. <head>
  11. <title>Opens a link</title>
  12. <script type="text/javascript" src="http://code.jquery.com/jquery-1.5.js"></script>
  13. </head>
  14. <body>
  15. <label for="link" id="target">www.google.com</label>
  16. <script type="text/javascript">
  17. $('#target').click(function () {
  18. var url = $(this).text();
  19. window.location = "http://"+url;
  20. });
  21. </script>
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement