[jQuery] Effects/show callback in Internet Explorer

2010-01-11 Thread Mimi
Hello, I am new to jQuery and over all web development. I recently created a site using jQuery Effects/show (callback) function, with a very basic show/hide effect. $(button).click(function () { $(p).show(slow); }); However, it works fine in Safari and Firefox, but does not work at

RE: [jQuery] Effects/show callback in Internet Explorer

2010-01-11 Thread Andreas Möller
You've got errors in your presentation and, consequently, in your behaviour, as Jeffrey Zeldman would say, I reckon. Here $(bio).click(function () {}); you are applying a selector which should select an element in your DOM with the tag bio. However, no such element exists -