I am calling getTags web-method which returns hash-table in JSON format.
following is return value which is formatted by 
jQuery.parseJSON(JSON.stringify(response)) 
and assigned to variable  jsonObj 
I want read Key and Its value .How can I do this?
var jsonObj = {"getTags":[
                 {"Key":"TagID","Value":2},
                 {"Key":3,"Value":"Best College"}
                 ]
               }
 
     
     
    