Advertisement
Guest User

Untitled

a guest
Jul 21st, 2013
6,428
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. http://localhost:1947/GreenViewService.svc/?callback
  2.  
  3. function GetDataPoints() {
  4. alert('S');
  5. var action = 'http://localhost:1984/GreenViewService.svc/?callback=';
  6. alert(action);
  7. $.ajax({
  8. "type": "GET",
  9. "url": action,
  10. "cache": false,
  11. "contentType": "application/json; charset=utf-8",
  12. dataType: "text",
  13. "success": function(result) {
  14. alert(eval(result));
  15. var json = eval(result);
  16. //fillDropDown(json, prefix + 'DataPoint', 'NodeLabel', 'ID');
  17. }
  18. });
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement