On Nov 17, 2:33 pm, Richard <richardofy...@gmail.com> wrote:
> The problem is  that the div is not changing in the DOM window. When I
> relaunch the DOM window, then I can see the change.

It looks as though this plugin is not using your element but its
children.  You might have to do the same thing to your div and to
$DOMWindow.

    from http://swip.codylindley.com/jquery.DOMWindow.js, lines 313 -
316:

    case 'inline':
        $DOMWindow.append($(settings.windowSourceID).children());
        $DOMWindow.unload(function(){// move elements back when you're
finished
            $(settings.windowSourceID).append($DOMWindow.children
());
        });
        // ...

Good luck,

  -- Scott

Reply via email to