Question 2:
For this CSS selector p.info.error, would the HTML look like this:
<p class="info error">
If that's right then would this work too:
<p class="error info">
but these would not be returned:
<p class="error">Test 1</p>
<p class="info">Test 2</p>
So this selector is syntax is the logical AND of the two classes. Is
there any way to do an OR operation? I supose this would work:
var list = $(
p.info) + $(p.error)
I think HTML examples would be very illuminating on this page.
Peace,
Rob:-]