Bug Tracker

Changes between Initial Version and Version 1 of Ticket #15148, comment 4


Ignore:
Timestamp:
Jun 21, 2014, 10:42:47 AM (9 years ago)
Author:
stealthpaladin
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #15148, comment 4

    initial v1  
    55So much so, while it may fill a small hole for edge cases, it may also not be needed. The same result is achieved by:
    66
    7 $(any).find(Select).not($(any).find(Mask).find(Select))
     7el=$(anything);
     8el.find(Select).not(el.find(Mask).find(Select));
    89
    910In case anyone happens to arrive here via search or have a similar problem.