Plugging in third party javascript that does custom paint rendering on a visible DOM object.
Posted: Fri Mar 15, 2013 4:53 am
by maxkatz
code
<div name="panel_3" dsid="panel_3" id="j_4" class=" mobilepanel1">
</div>
/code
This code is generated for a Panel component (panel_3 is the name). Try using this:
code
$('div[dsid="panel_3"]');
/code
Plugging in third party javascript that does custom paint rendering on a visible DOM object.
Posted: Fri Mar 15, 2013 5:01 am
by Jason Cooner
I will. And then reference panel_3 as my "container" element, I assume. That or of course rename to "container". Thanks, and I'll try tomorrow morning and get back to you.
Plugging in third party javascript that does custom paint rendering on a visible DOM object.
Posted: Fri Mar 15, 2013 5:02 am
by maxkatz
Yes, replace panel_3 with panel container you set.