What happens if you change this (that fails) :
$('p').find('strong ~ strong');
$('div').find('code ~ code');
To this :
$( 'strong ~ strong', document.getElementsByTagName("p") );
$( 'code ~ code', document.getElementsByTagName("div") );
Am I just fishing here ? Very quick one (and on top of my head) ...
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery Development" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/jquery-dev?hl=en
-~----------~----~----~----~------~----~------~--~---