jQuery SVG Plugin: Conflict issue with extension "jquery.svgdom.js"

jQuery SVG Plugin: Conflict issue with extension "jquery.svgdom.js"

Using jQuery SVG plugin (ref  http://keith-wood.name/svg.html ).

Description of issue
There is a conflict using the plugin extension "jquery.svgdom.js" along with jQueryUI library. If you add those libraries and initialize the tab widget then there will be en error in the console complaining about "jquery.svgdom.js". I'll paste image below of error message (using firebug):


Question about svgdom.js
On authors website he said that he made modifications to the jQuery code file but the last time he did that was back in version 1.7.2, is this something that needs to be modify for every jQuery release, it would be nice if authors would make necessary modification on latest jQuery version (1.9.1).

Replicate issue
You should be able to replicate the issue by doing what I mentioned on the description above but here is the HTML code below if you need to use that too, you will just need to get all the JS and CSS files to work the HTML below:
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4.     <title>jQuery SVG</title>
  5.     <link href="jquery-ui.custom.min.css" rel="stylesheet" />
  6.     <link href="jquery.svg.css"" rel="stylesheet" />
  7.     <style>
  8.         #controls-wrapper { background-color:#ccc; display:inline-block; width:380px; height:450px; vertical-align:top; }
  9.         #svg-wrapper { border:1px solid #000; display:inline-block; width:500px; height:450px; position:relative; }        
  10.     </style>        
  11. </head>
  12. <body>        
  13.     <div id="tabs-test">
  14.         <ul>
  15.         <li><a href="#tabs-1">Nunc tincidunt</a></li>
  16.         <li><a href="#tabs-2">Proin dolor</a></li>
  17.         </ul>
  18.         <div id="tabs-1">
  19.         <p>Proin elit arcu, rutrum commodo, vehicula tempus, commodo a, risus.</p>
  20.         </div>
  21.         <div id="tabs-2">
  22.         <p>Morbi tincidunt, dui sit amet facilisis feugiat, odio metus gravida ante.</p>
  23.         </div>                  
  24.     </div>
  25.     <div id="svg-wrapper"></div>
  26.     
  27.     <script src="jquery/jquery.js"></script>
  28.     <script src="jquery-ui.custom.min.js"></script>
  29.     <script src="jquery.svg.js"></script>
  30.     
  31.     <!-- CONFLICTING FILE -->
  32.     <script src="jquery.svgdom.js"></script>    
  33.     <script>        
  34.         /* When page has loaded */
  35.         $(function () {
  36.             $("#tabs-test").tabs(); //You can comment/uncomment this to replicated issue

  37.             $('#svg-wrapper').svg();
  38.             var svg = $('#svg-wrapper').svg('get');
  39.             svg.rect(0, 0, 800, 300, {fill: '#FF8080'});            
  40.         });
  41.     </script>
  42. </body>
  43. </html>

I appreciate any help, thanks.