Link to home
Start Free TrialLog in
Avatar of teletractrix
teletractrixFlag for United States of America

asked on

Jquery UI and ColdFusion

Hi, am having problems with my Jquery tabs. I am able to see the content in FireFox but not in IE 8. Here's a sample of my code:


<link type="text/css" href="css_folder_here/themes/base/jquery.ui.all.css" rel="stylesheet" />
	<script type="text/javascript" src="js_folder_here/jquery-1.4.2.min.js"></script>
	<script type="text/javascript" src="js_folder_here/ui/jquery.ui.core.js"></script>
	<script type="text/javascript" src="js_folder_here/ui/jquery.ui.widget.js"></script>
	<script type="text/javascript" src="js_folder_here/ui/jquery.ui.tabs.js"></script>
	<link type="text/css" href="#LAYOUT.CSS#/demos.css" rel="stylesheet" />
    <script language="javascript">
	$(document).ready( function(){
					
    	$("#MyTabLayout").tabs();
	});
	</script>
    <div id="MyTabLayout">
        <ul>
            <li><a href="link1.cfm">Link 2/a></li>
            
            <li><a href = "link2.cfm">Link 2</a></li>
        </ul>
    </div>

Open in new window

Avatar of erikTsomik
erikTsomik
Flag of United States of America image

it has not been tested with IE 8 so please read this page
http://stilbuero.de/jquery/tabs/#remote-tab-3
Avatar of teletractrix

ASKER

But it doesn't load any content in IE 6 either. Is there any known issue between Cold Fusion and Jquery Ajax tabs? (my code works well with static pages, but I don't see anything when I link the tabs to CFM pages.
can you post the code with dynamic content
this is the code in the link1.cfm file

<h1>Hello World</h1>
ASKER CERTIFIED SOLUTION
Avatar of teletractrix
teletractrix
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial