+1  A: 

Try this:

var paragraphsWithoutImages = $('p').not(':has(img)')

(Live example)

Michael Haren
Thanks! Had no idea I could do that...
n00b0101
+1  A: 

This will grab the paragraph not containing an image, which fits your limited sample:

var pt = $("p:not(:has(img))");

It's probably the case that your actual markup will be more complex than this but there are many variations on this that you could do.

cletus