Guest User

Untitled

a guest
Nov 22nd, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. //Get the latest version of the JSON describing the available content
  2. $.ajax({
  3. type: "GET",
  4. url: "/blog/idx",
  5. success: function(rslt) {
  6. blogJSON = rslt.hdr_blog_idx;
  7.  
  8. var qryStrContentParam = getUrlParam('content');
  9.  
  10. setIdx4(qryStrContentParam);
  11.  
  12. console.log("Read JSON, currIdx = " + currIdx);
  13. console.log(" content = " + blogJSON[currIdx].file);
  14.  
  15. history.replaceState({hdr_idx: currIdx},
  16. blogJSON[currIdx].desc,
  17. sURL_blog);
  18. }
  19. });
Add Comment
Please, Sign In to add comment