So, sometimes, my output will look like this:
<p><img src="someimage.jpg" /></p>
<p>A new paragraph</p>
Other times, it will look like this:
<img src="someimage.jpg />
<p>A new paragraph</p>
I'm trying to write some sort of "if" statement where, if the first p element in the markup surrounds an image tag, it will pull:
$j("p:eq(1)")
Otherwise, it will pull:
$j("p:eq(0)")
Alternatively, I could find all the img tags and if it's surrounded by
tags, remove those, but I'm not sure which one is better, or how to do either...
I tried the following, but it doesn't work:
if($j("img:eq(0)").parent().get(0).tagName == "p") {
var pt = $j("p:eq(1)");
} else {
var pt = $j("p:eq(0)");
}