I need to check the value of a particular variable alone from set of variables using JQuery…..
This is my code
return "{" + string.Format("IsPreviewed:'{0}',PreviewdUrl:'{1}',IsFreeVideo:'{2}'",
parameters[12],pranu,jithu) +"}";
The value will be returned to a function in a .Js file for ex: uploader.Js where i will store all these values in a variable.
From this variable i need to check whether the pranu variable contains a value like http://www.google.com ,jithu variable has a boolean value either true or false using JQuery
Can any one provide some ideas or sample coding to help me solve this task……
So, if I’ve understood correctly you just want to pull out the
pranuvariable from the string?Here’s a working example.