Not signed in (Sign In)

Categories

Welcome, Guest

Want to take part in these discussions? If you have an account, sign in now.

If you don't have an account, apply for one now.

Links

Vanilla 1.0.1 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthorcodylindley
    • CommentTimeJul 8th 2008 edited
     
    Thickbox has evolved!

    http://swip.codylindley.com/DOMWindowDemo.html

    The author, after toying with several custom implementations of thickbox has decided to evolve the code in a new direction. The new direction is focused on the creation of DOM windows (hopups). Additionally, the new code focuses on the creation/removing of this window and not the contents (e.g. title bar) inside of the window due to the fact that every usage of the code required to much customization.

    CL
    • CommentAuthorHanneman
    • CommentTimeJul 12th 2008
     
    That's cool!

    I'll give it a try ...!
    • CommentAuthorckroon
    • CommentTimeJul 16th 2008
     
    Looks great!
    Any advice for a noob?

    To get the DOM to trigger, What files do I need in my js folder besides the DOMWindow.js file?
    • CommentAuthorbalistik
    • CommentTimeJul 19th 2008 edited
     
    [comment removed by poster]
    my question was addressed at: http://code.google.com/p/swip/issues/detail?id=1
    • CommentAuthorcaitlin
    • CommentTimeJul 29th 2008
     
    I can't get mine to trigger either.
    • CommentAuthorjvanasco
    • CommentTimeAug 2nd 2008
     
    wow, this is great! i was going to post "How can I create a thickbox window from JavaScript?" and you forked the code to do just that!

    Thank you!
    • CommentAuthordasher
    • CommentTimeAug 6th 2008
     
    Cool - looks and functions well.
    Great that you can use the JQuery Animate functions with it - and that it works with jQuery.noConflict()

    Would be great if we could pass in delegates for things like: onLoad, onClose, etc - on construction.
    It would help a lot with animations, passing information between the parent, child & vice versa. It could also simplify things like when creating wizards.

    Have you considered injecting the js lib into the iframe child windows? While there are plugins that do this already - it would simplify things as the contruction of the iframe is done by your windowing code anyway. If this was a delegate we would be able to add extra code or libs. Sometimes we don't have control over the content from the url target - it would also give us a clean & simple way to do some interesting white label things.

    Thanks for the effort :)
    • CommentAuthorbinbin
    • CommentTimeSep 6th 2008
     
    Hello,

    If I don't want to use the loader function and let the html page with pictures using Iframe load traditionnaly I must to put : loader:0 ?
    Thanks
    • CommentAuthorbinbin
    • CommentTimeOct 31st 2008
     
    Is it compatible with Internet Explorer 6 and 7 ? Because I got a problem with...
    • CommentAuthorddd
    • CommentTimeNov 25th 2008
     
    Any chance of forward and net buttons for inline content :D. This looks great thanks for providing this
    • CommentAuthorloga
    • CommentTimeDec 12th 2008
     
    Good job!
    Thanks you for sharing your knowledge!
    • CommentAuthorm.ugues
    • CommentTimeDec 16th 2008
     
    I got a problem on domWindows.

    http://groups.google.com/group/jquery-en/browse_thread/thread/c6c441e8cdce9d8d#

    I have 2 pages indexContent defines an iframe in which is loaded an index page that defines a href of type absoluteIframeDOMWindow.

    I modified the domWindow library in a way that it appends the DOMWindow div at line 262 in this way
    parent.$('body').append('<div id="DOMWindow" ....

    In this way I modified all the other elements to be append to the parent (the DomWindowLoader, the DOMWindowIE6FixIframe, the DOMWindowOverlay..) and every reference to these elements has been modified (parent.$('#DOMWindowOverlay'), parent.$('#DOMWindow') and so on).

    It seems to work and now the domWindow is not within in the iframe but it can be moved on all the page.

    The problem is that in Firefox when i click on the overlay to close the domWindow the event closes the element but i receive this error

    Error: jQuery.easing[this.options.easing || (jQuery.easing.swing ? "swing" : "linear")] is not a function
    Source File: file:///D:/Mazi/Develop/workspace-aptana/Examples/domWindow/js/jquery.min.js
    Line: 32

    On ie6 this piece of code broke up.

    Any idea how to fix this problem? (or another way to append the domWIndow to the parent page?).

    Kind regards

    Max
    • CommentAuthorfabioassis
    • CommentTimeMay 24th 2009
     
    Hey, Cody.

    May I suggest another forum or a category just for DOMWindow?
    Or could you point a place where we could comment about it, without messing with Thickbox topics?
    • CommentAuthormr87
    • CommentTimeJun 7th 2009
     
    Hi everyone.
    Does anybody know if the script supports XML lists for the images?
    Thanks!
  1.  
    theres so many comments in this furom lol...


    http://makemoneyhomecourse.com/
    • CommentAuthorHereIAm
    • CommentTimeSep 2nd 2009
     
    Can anybody give me a hint on how to get this running?

    I downloaded the js files and set the script references as in the samplepage of DOMWindow.
    I tried sample3, but the google content is displayed in a new window.
    • CommentAuthorHereIAm
    • CommentTimeSep 2nd 2009 edited
     
    The following code seems to work in my situation with IE7 and IE8.

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>DOM Window (jquery.DOMWindow.js)</title>

    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>
    <script type="text/javascript" src="jquery.DOMWindow.js"></script>

    </head>
    <body style="padding:10px;">



    <p><a href="images\SlideShows\Home02\SlideShow.htm" class="absoluteIframeDOMWindow">Open DOM Window</a></p>

    <script type="text/javascript">
    $('.absoluteIframeDOMWindow').openDOMWindow({
    height:324,
    width:545,
    positionType:'absolute',
    positionTop:150,
    eventType:'click',
    positionLeft:150,
    windowSource:'iframe',
    windowPadding:0,
    loader:1,
    loaderImagePath:'animationProcessing.gif',
    loaderHeight:16,
    loaderWidth:17
    });
    </script>



    </body>
    </html>
    • CommentAuthorHereIAm
    • CommentTimeSep 2nd 2009 edited
     
    Deleted and post above modified. - Problems are solved (hopefully).
    • CommentAuthorHereIAm
    • CommentTimeSep 7th 2009
     
    I like to execute the link defined in the a tag above inside a java script.

    Can somebody explain the syntax for me. I guess this is a simple java basic question. I'm a newby to this subject and any help would be appressiated.
  2.  
    does the script supports XML for Audio?
    is this possible?

    online banking accounts[
    • CommentAuthorpears
    • CommentTimeSep 27th 2009
     
    wow!
    I am really excited with this. It was really cool.
    I am on my way to give it a try.

    Great thanks for the information!


    help with anxiety
    • CommentAuthorJennifer
    • CommentTimeSep 30th 2009 edited
     
    Hi guise.................
    I realized your comment in this forum site its a so nice and wonderfull.
    Thanks.
    http://ezinearticles.com/?Acai-Force-Max-Review---Does-Acai-Force-Max-Really-Work?&id=2926642
    • CommentAuthorre14forum
    • CommentTimeOct 1st 2009
     
    as far as i can see, it is a book review, right?

    Individual Voluntary Arrangement
  3.  
    Wow thank you for this thread (although a little bit older) but still very informative!

    ben cummings
    • CommentAuthorRandy1
    • CommentTimeOct 17th 2009 edited
     
    • CommentAuthorLjone
    • CommentTimeOct 21st 2009
     
    The information was really helpful. Will try out the links provided. Keep us posted on new developments.
    • CommentAuthorghelm23
    • CommentTimeOct 21st 2009
     
    what exactly is 'noob'?
    what does it do?

    Gothia Debt
  4.  
    Good job!
    Thanks you for sharing your knowledge!


    SvenCondon
    horton crossbow
    • CommentAuthorFrederica
    • CommentTimeNov 8th 2009 edited
     
    I wanted to know where would you insert the above mentioned code. I assume in the header and if so then we need to add the other script from Google Analytics above this code or after this code.
    http://ezinearticles.com/?Premium-White-Pro-Review---Does-Free-Trial-Really-Work?&id=3205919
  5.  
    Dear sir,
    I am new to this JQuery. I used this jquery its working fine in Firefox as well as IE....Only thing is In IE, the model window goes on top when i click link.I have to see the model window on top,though i have a link in bottom.Actually in firefox,when i click a link ,the model window is in same place(means near to the link).But wherever i can click it appers in top...Please help me..............
    • CommentAuthoraddy.michy
    • CommentTimeNov 17th 2009
     
    It working fine in Firefox but i face some problems in IE7. what can be the main reason behind this.

    ------
    Solar Panels Australia
    • CommentAuthorgjazz35
    • CommentTimeDec 8th 2009
     
    Ha considerado la inyección de lib JS en las ventanas iframe niño? Si bien existen plugins que hacerlo ya - sería simplificar las cosas, como la construccion de el iframe se hace por su código de ventanas de todos modos. Si se trata de un delegado que sería capaz de añadir código adicional o libs. A veces no tenemos control sobre el contenido de la URL de destino - que también nos daría una forma limpia y sencilla de hacer algunas cosas interesantes de etiqueta blanca.

    1st Credit
  6.  
    hi thank you for the informative comments you post it here...it so useful...

    Merry Christmas to all of you here....

    Regards,
    Courtney
    ________
    Ballonfahrt
  7.  
    Thank you for this. It is helping a newbie like me.

    Regards and God bless,
    Amy
    Bewegungsmelder
    • CommentAuthornattanpush4
    • CommentTimeMar 29th 2010 edited
     
    it is th gud sites for server but sometimes internet got problem to sever
    [url=http://www.healthproductreviewers.com/top-grade-acai-review.html]Top Grade Acai[/url]