jquery - To Split JSON result -
iam using jquery in asp.net
my json result in following format
2@2@pod @pol @istransshipmentport
i want split values , bind dropdown list how can split json result.
select: function (e, i) { $('#<%=hddnportterminal.clientid%>').html(i.item.val); }
the result bind hiddenfiled, how can split these data in hiddenfiled , take other dropdown?
iam not getting idea, can 1 please help
$pieces = explode("@", $result);
of course, saying "i want split string" meaningless.