Hello Sir .
I will set cookies value in jquery.
$.ajax({
type: "GET",
url: appurl + "common/Intialize",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (data) {
// Assigned Returned data to Global variable
//console.log("transactionID =" + data);
$("#transactionID").val(data);
document.cookie = "transactionID =" + data;
It's my funnction. i will set here cookies value.
I will create a new function for get cookies value and i will get only transcation ID.
i will not get cookies value.
Please help me.