I can find a div that has an attribute like so:
$(\'.funding-plan-container[data-timestamp]\')
But if I try to find a div that does not hav
Try it with the :not() pseudo-class selector: http://api.jquery.com/not-selector/
:not()
$('.funding-plan-container:not([data-timestamp])')