im very new to getting data from one page to another and i have used querystring to pass data. and looks like this:
?redesigndata={"jsondata": "{\"images\":[ {\"src\":\"images/bgset.jpg\"},{\"src\":\"images/ar019.png\"}]}","product_hardware": "silver","product_thread": "white","product_lining": "Blue","product_lining_loc": "images/lining/blue_80x32.jpg"}
How do i remove all the \ from it and then put it into an object or any thing like this with Javascript or jQuery:
redesigndata = {
"jsondata": "{"images":[ {"src":"images/bgset.jpg"},{"src":"images/ar019.png"}]}",
"product_hardware": "silver",
"product_thread": "white",
"product_lining": "Blue",
"product_lining_loc": "images/lining/blue_80x32.jpg"
}
$.param