I am new on web coding. I use weebly drag and drop but also HTML to add extra things. What I did is has created a variable that includes customers' selections about a product. I would like to add this variable.value to the specific products' short description.
Any help will be appreciated.
Here is my code for to get this variable from another page so final step is to get this variable from product page, short-description section.
Thanks
Tim
<html> <body> <script>
var queryString = decodeURIComponent(window.location.search);
queryString = queryString.substring(1);
var queries = queryString.split("&");
for (var i = 0; i < queries.length; i++) {
document.write(queries[i] + "<br>");
}
</script> </body> </html>