Home >Web Front-end >JS Tutorial >Things that need to be modified when upgrading from jQuery1.3.2 to jQuery1.4.4_jquery
Modifications to incompatibilities:
1. jQuery("option[selected=true]",this) changed to
jQuery("option:selected",this)
2 . jQuery("option[text=text]",this) changed to
jQuery("option:contains(text)",this)