Hello,

After updating jquery version from 1.2.6 to 1.3.2 I get this error:

Error: uncaught exception: [Exception... "Could not convert JavaScript
argument arg 0"  nsresult: "0x80570009 (NS_ERROR_XPC_BAD_CONVERT_JS)"
location: "JS frame :: http://www.testloc.com/static/jquery.js ::
anonymous :: line 48"  data: no]

in IE the error is:

'object is required: jquerydimensions.js line: 443'

version installed of jquerydimensions is 1.1.2


the part of the code that trigger the error is this:

// ---------- function to bind drop events for cmp items ---------- /
                ddDropBind: function( id, section, position ){

                        var handler = this;
                        //alert(id);
                        handler.$( '#'+id )
                                .unbind( 'dropstart' ).unbind( 'drop' ).unbind( 
'dropend' )
                                .bind( 'dropstart',
                                        function( e ){

                                                if( handler.marker.icon ){
                                                        handler.marker.iconDrop 
= true;
                                                }

                                                $(this).after( handler.$marker 
);

                                                handler.marker.section = null;
                                                handler.marker.position = null;

                                                if( handler.marker.prevSection 
== section &&
handler.marker.prevPosition == position ) return;

                                                handler.marker.section = 
section;
                                                handler.marker.position = 
position;
                                        }
                                )
                                .bind( 'drop',   -> here
                                        function( e ){
                                        }
                                )
                                .bind( 'dropend',
                                        function( e ){
                                        }
                                );
                },

(I can copy all the code if necessary)

please, can someone help me?

Thank you very much,
Regards,
Carlos.

Reply via email to