I am using jQuery to create Tabs
(www.jqueryui.com/tabs/). I use jQuery v1.6.4
In the same page there is a sfwobject for uploading files and it requires adobe flash player. The problem is that it conflicts with jQuery. I tried some noConflict methods, but didnt found a solution.
<script type="text/javascript">
var _cssjQ = jQuery.noConflict();
_ccsjQ(function() {
_ccsjQ( "#tabs" ).tabs();
});
</script>
Here are two files that have to do with the sfwobject.
http://www.thegamelounge.net/public/js/3rd_party/swfupload/swfupload.js
http://www.thegamelounge.net/public/js/3rd_party/swfupload/swfupload.sfw
Thanks!
jQuery no conflict removes the $ alias, you will need to use this form if you plan to use the $ alias:
That
ips.attach.jsuses the $ alias, you will need to wrap it in a no-conflict that passes the $ back in such as the example above – use care as this will potentially remove the functions inside there from the global namespace also.