I want the value of the id which is in url in html paragraph tag. How I do this
jquery
function get_Table_List(id) {
$.ajax({
type: "GET",
url: "one.html?outlet="+id,
});
html
<div class="outletTitle" style="text-align:center;">Selected outlet:<p id="preview"></p>
</div>