Few questions that may help others help you

1) What is "TransferTo"?
2) You say in the topic "show(), hide()" problems... there is no "hide
()" in that limited code you show
3) Why use "$()" in a few places and "jQuery()" in another?


On Jan 26, 5:20 pm, viklund_anders <viklund_and...@hotmail.com> wrote:
> Hi,
>
> I would like some help to understand why this code works perfectly
> fine the first time I open the window and close it, after this I
> cannot open the window any more, unless I reload the page.
>
> Thanks for any ideas!
>
>         function openWindow(messageText) {
>                         $("#appendRow").TransferTo(
>                                 {
>                                         to:'window',
>                                         className:'transferer2',
>                                         duration: 400,
>                                         complete: function()
>                                         {
>                                                 jQuery('#window').show();
>                                         }
>                                 }
>                         );
>
>                 $('#window').blur();
>                 return false;
>         }
>
>         function closeWindow(){
>                 $('#window').TransferTo(
>                         {
>                                 to:'appendRow',
>                                 className:'transferer2',
>                                 duration: 400
>                         }
>                 ).hide();
>         }

Reply via email to