Marko Debac wrote:but when we go to view source code those snipet dont exist on that page
Of course not. "View source" does just that, views the source HTML that was sent to the browser. That's all it does.
If you want to see the dynamic DOM tree, use a tool like Firebug.
and the most worst part - my beautiful jquery effects dont see those divs id too, and nither effects wont work.
If you are setting up those effects before the DOM elements exist, then yeah. You need to wait until after the elements exist to try to work with them.
The callback from the load() method will be invoked
after the new elements have been added to the DOM, and that's the right place to start working with them.
The exception is events, which can be pro-actively established using live().
You might also be interested in the the LiveQuery plugin, which will automatically trigger handlers when an element matching a specific selector comes into (or out of) being.