I am trying to parse a string into an object. I have looked at the jQueryparseJSON documentation at the following link I\'ve also included the jquery library so I know it\'s
You have a typo error in your code :
typo
here var obj = jQueryparseJSON( str );
var obj = jQueryparseJSON( str );
should be var obj = jQuery.parseJSON( str );
var obj = jQuery.parseJSON( str );