I'm trying to read a querystring parameter ("ssip") via jQuery and the query plugin, but it seems to return null instead of the actual value.
Here's is my code:
<script src="jquery-1.3.2.min.js" language="javascript"></script>
<script src="jquery.query-2.7.1.js" language="javascript"></script>
<script language="JavaScript" type="text/javascript">
function getStreamingServerIP() {
return $.query.get('ssip');
}
</script>
I'm calling this method from Flex via ExternalInterface.
Does anyone spot any problems with the above code?