I've inherited some javascript, and it's not all working as expected at the moment. This is one sticking point:
jQuery("#theForm")
.find("input[@checked], input[@type='text'], options[@selected], textarea")
.each(function() { ... });
I'm not familiar with the [@]
syntax (though it seems clear what it wants to have happen), and I'm not finding documentation. Can anyone tell me if this is valid jquery?