var userId = location.search.match(/search=(.*?)(&|$)/)[1]; $.getJSON("http://jsonplaceholder.typicode.com/posts?userId="+encodeURIComponent(userId), function(data){ document.write(JSON.stringify(data)); })