Waw this is a fast reply! Thanks for trying to help me out! I followed your advice, made the suggested changes, added some comment and cleaned up my code, but unfortunately the problem remains... I threw out everything unnecessary, keeping an empty html page to be filled with only those elements necessary for a very basic menu ... I also tested the json object. In IE7 it nicely produces all the required values (testing with 'alert(data.lijstresultaten[stand].vaknaam)' ), so it doesn't fly out because it misses those values... You can see the result here: http://conforta.webhop.org/gip/gipp5quatclient.asp
Thank you so much for trying to help On 18 aug, 04:54, "Joel Birch" <[EMAIL PROTECTED]> wrote: > Hello, > > Here are a few thoughts on your code in the frame embedded in the page > you linked to. > > Firstly, I'm not aware that this code is correct: > $().ready(function() { > I think you need the word 'document' in the first $() like this: > $(document).ready(function() { > > Secondly, you should call the .superfish() method after the other code > which seems to alter the menu DOM. .superfish() has to be initialised > upon the final DOM structure. > > Thirdly, I think you may get more consistent results across browsers > if you rewrite the following code: > .attr('innerHTML',klassen[a]) > with this: > .html(klassen[a]) > ...which is jQuery's recommended way of injecting new HTML. > > Hope some of this helps. > > Joel Birch.