Closed filmaj closed 13 years ago
4.6 BB or so has problem with .find(). Assuming the below selectors are valid, this won't work:
var el = x$('#myEl'); var subEl = el.find('.randomClass');
But this will:
var el = x$('#myEl'); var subEl = el.find('.randomClass', el[0]);
wtf?
pretty sure c4ef1deb8f777b23a7262dee33bbbc86c83f6fec solved this problem.
4.6 BB or so has problem with .find(). Assuming the below selectors are valid, this won't work:
But this will:
wtf?