jQuery & Prototype Conflict issue

jQuery & Prototype Conflict issue


Hi all,
I've followed the article on how to resolve the conflict between
jQuery and Prototype on jQuery's website. The way my code works is I
would call jQuery before Prototype in the document, so I didn't use
noConflict() function, instead, I just used "jQuery" instead of "$"
inside the function I called.
However, It looks like it passed through that part, but browser has
detected an error:
"'this.style' is null or not an object".
Where it's pointing to is inside the jquery.js file, specifically in
the "jQuery.fn.extend" function.
I am not sure what it means by it's null, is it because i did not
declare "style" for the document's style? However, I would think the
function is referring to the area where the script is used, and in
that <div>, there IS style defined.
Any idea is appreciated.