In an application I am working on I build an HTML string of table rows for the purpose of appending to a table in the DOM. I want to save that string as HTML for use later on in a type ahead search function and I want to be able to search the nodes (rows) for name matching. I have the following code to parse the HTML for searching.
var myHtml = $.parseHTML(rowString);
This code generates the following error: "Microsoft JScript runtime error: Object doesn't support property or method 'parseHTML'". Now I have a lot of jQuery working in this page so I don't think it has anything to do with not loading the jQuery libs - googled around a lot and came up with nothing. Any help appreciated. Oh ya - just in case you are going to ask this line of the code that is before the line that causes the error works just fine and adds the rows to the table.
$("#myTable").append(rowString);