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.


Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -