does the html look like this?
<markup02> hello </markup02>
if so, the code would work,
if the code looks like
<div id='markup02'> ...
$("#markup02") would find it
or if it looked like
<div class='markup02'> ...
$(".markup02") would find the divs.

:)

On 5/8/07, Mario Moura <[EMAIL PROTECTED]> wrote:

Hi Folks

How can I force my JQuery script run?

After my Html page is loaded I have some scripts in the middle of DOM
(like I need) (because is generated from some db_query)

<script>
$(document).ready(function(){
$("markup02").append("something");
$("img").attr({title:"something"});
});
</script>

My JQuery.js is fine

Is it possible?

Regards

Mario




--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ

Reply via email to