Sharepoint offers the following JavaScript function to get a QueryString parameter value:
GetUrlKeyValue('a', false, 'www.example.com?a=test')
I would like to know if there is a similar JavaScript function to get a parameter value from within inplview.js API hashed url like the following:
http://www.example.com/testsite/Lists/SampleList/List.asp#InplviewHash7ed4366a-8857-4c61-b92f-6d6f635ad420=WebPartID%3D%7B38A3E939--9187--4C4A--BF28--0CEF3988314A%7D-FilterField1%3DFoo-FilterValue1%3DBar
From the previous URL, I would like to extract 'FilterField1' and 'FilterValue1' values ('Foo' and 'Bar' respectively), as if those were regular QueryString parameters.