since you are using jQuery(selector) instead of $(selector), it
shouldn't be naming collision. How do you know jQuery lines are
executed? if you are thinking that since it is not giving any errors
it is executing it is not correct. if jquery cannot find the element,
it won't give any error. you can try jquery('#' + elementid).length to
see if it is returning any value. if so, jquery is able to find the
element.
On Dec 10, 7:36 pm, Ashish <[EMAIL PROTECTED]> wrote:
> All my code is in name space Ex where Ex = YAHOO.namespace('pmc');
>
> now inside this code, I have some jquery
> Ex.myProgressFormatter = function(elCell, oRecord, oColumn, oData) {
> var iterid = oRecord.getData("id");
> var elementid = "pb" + iterid;
> .....
> jQuery("#" +elementid).progressbar().progressbar("progress", status);
> jQuery("#" +elementid).text("yui jquery worked");
> .......
>
> }
>
> jQuery lines are executing but not doing anything at all. No text is
> added. no progress bar is added.
>
> is it a namespace issue? how can i fix it?