- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Hi @ratika ,
Include jQuery Library in the landing page.
<script>
$(document).ready(function () {
var productName = GetParameterValues('productName');
function GetParameterValues(param) {
var url = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
for (var i = 0; i < url.length; i++) {
var urlparam = url[i].split('=');
if (urlparam[0] == param) {
return urlparam[1];
}
}
}
$("ID or Class").text(productName); // display the product
});
</script>- Malarrajan Sundarraj