[jQuery] Re: jQuery 1.2.6 clone problem with internet explorer.

2010-01-15 Thread m.ugues
Ok this seems to work.
How can i minify now the pathed version?

Kind regards

Massimo

On Jan 14, 2:12 pm, Dave Methvin dave.meth...@gmail.com wrote:
 If you're really stuck, you could try copying the clone function from
 1.3 into 1.2.6.


Re: [jQuery] Re: jQuery 1.2.6 clone problem with internet explorer.

2010-01-15 Thread Leo Balter
Try Google Closure Compiler
http://code.google.com/intl/pt-BR/closure/compiler/

2010/1/15 m.ugues m.ug...@gmail.com

 Ok this seems to work.
 How can i minify now the pathed version?

 Kind regards

 Massimo

 On Jan 14, 2:12 pm, Dave Methvin dave.meth...@gmail.com wrote:
  If you're really stuck, you could try copying the clone function from
  1.3 into 1.2.6.




-- 
At,
Leo Balter
http://leobalter.net
Blog técnico: http://blog.leobalter.net


[jQuery] Re: jQuery 1.2.6 clone problem with internet explorer.

2010-01-14 Thread m.ugues
Ok I found the problem.
In the html i try to clone the problem is limited to clone the head
component.

I tried it with jQuery 1.3.2 and all work fine.

So any suggestions? I cannot upgrade in a production environment to
jQuery-1.3.2 since this involves a lot of not-regression tests.
Is there any fix around for this problem or any patch?

Kind regards

Massimo

On 14 Gen, 01:29, Jules jwira...@gmail.com wrote:
 Sorry, I just noticed you are using 1.2.6.  Ignore my reply.

 On Jan 14, 11:26 am, Jules jwira...@gmail.com wrote:

  This clone() works for me in ie 6.0 :).  May be C.fx.step is an
  element in your page and IE 6 can't find it for some reason?

  head
      script src=../scripts/jquery-1.3.2.js type=text/javascript/
  script

      script type=text/javascript
          $(document).ready(function() {
              $(#btnCloneIt).click(function() {
                  $(#container).append($(#toBeCloned).clone());
              });
          });

      /script

  /head
  body
      div id=container
          div id=toBeClonedI am a clone/div
      /div
      input type=button value=Clone It id=btnCloneIt
  name=btnCloneIt /
  /body

  On Jan 14, 4:51 am, m.ugues m.ug...@gmail.com wrote:

   Hallo all.
   When i call the clone() function in Internet Explorer jQuery
   meltdowns :(

   The error reported in ie6 is:
   C.fx.step is null or not an object.

   Any idea how to fix the problem?

   Kind regards

   Massimo


[jQuery] Re: jQuery 1.2.6 clone problem with internet explorer.

2010-01-14 Thread Dave Methvin
If you're really stuck, you could try copying the clone function from
1.3 into 1.2.6.


[jQuery] Re: jQuery 1.2.6 clone problem with internet explorer.

2010-01-13 Thread Jules
This clone() works for me in ie 6.0 :).  May be C.fx.step is an
element in your page and IE 6 can't find it for some reason?

head
script src=../scripts/jquery-1.3.2.js type=text/javascript/
script

script type=text/javascript
$(document).ready(function() {
$(#btnCloneIt).click(function() {
$(#container).append($(#toBeCloned).clone());
});
});

/script

/head
body
div id=container
div id=toBeClonedI am a clone/div
/div
input type=button value=Clone It id=btnCloneIt
name=btnCloneIt /
/body


On Jan 14, 4:51 am, m.ugues m.ug...@gmail.com wrote:
 Hallo all.
 When i call the clone() function in Internet Explorer jQuery
 meltdowns :(

 The error reported in ie6 is:
 C.fx.step is null or not an object.

 Any idea how to fix the problem?

 Kind regards

 Massimo


[jQuery] Re: jQuery 1.2.6 clone problem with internet explorer.

2010-01-13 Thread Jules
Sorry, I just noticed you are using 1.2.6.  Ignore my reply.

On Jan 14, 11:26 am, Jules jwira...@gmail.com wrote:
 This clone() works for me in ie 6.0 :).  May be C.fx.step is an
 element in your page and IE 6 can't find it for some reason?

 head
     script src=../scripts/jquery-1.3.2.js type=text/javascript/
 script

     script type=text/javascript
         $(document).ready(function() {
             $(#btnCloneIt).click(function() {
                 $(#container).append($(#toBeCloned).clone());
             });
         });

     /script

 /head
 body
     div id=container
         div id=toBeClonedI am a clone/div
     /div
     input type=button value=Clone It id=btnCloneIt
 name=btnCloneIt /
 /body

 On Jan 14, 4:51 am, m.ugues m.ug...@gmail.com wrote:

  Hallo all.
  When i call the clone() function in Internet Explorer jQuery
  meltdowns :(

  The error reported in ie6 is:
  C.fx.step is null or not an object.

  Any idea how to fix the problem?

  Kind regards

  Massimo