Today's Posts Follow Us On Twitter! TFL Members on Twitter  
Forum search: Advanced Search  
Navigation
Marketplace
  Members Login:
Lost password?
  Forum Statistics:
Forum Members: 24,254
Total Threads: 80,792
Total Posts: 566,471
There are 835 users currently browsing (tf).
 
  Our Partners:
 
  TalkFreelance     Design and Development     Programming     Javascript :

jQuery not working on IE

Thread title: jQuery not working on IE
Reply    
    Thread tools Search this thread Display Modes  
11-26-2010, 09:15 PM
#1
festvs is offline festvs
festvs's Avatar
Status: I'm new around here
Join date: Nov 2010
Location:
Expertise: Design and programming
Software: Dreamweaver, photoshop cs5
 
Posts: 16
iTrader: 0 / 0%
 

festvs is on a distinguished road

  Old  jQuery not working on IE

I made this intro :
www.festvs.com.br/intro.html

But it doesn't work on IE, only on firefox and chrome

What i need to do ?

Reply With Quote
11-26-2010, 09:26 PM
#2
Village Genius is offline Village Genius
Village Genius's Avatar
Status: Geek
Join date: Apr 2006
Location: Denver, CO
Expertise: Software
Software: Chrome, Notepad++
 
Posts: 6,894
iTrader: 18 / 100%
 

Village Genius will become famous soon enough

  Old

You're going to have to show a little more effort than that. Please post the code, better describe your issue and tell us what steps you've taken to solve the problem (if any).

ps. I strongly suggest you read my article about asking effective questions here: http://www.talkfreelance.com/showthread.php?t=67425

Reply With Quote
11-28-2010, 02:32 PM
#3
santa is offline santa
santa's Avatar
Status: Member
Join date: Mar 2009
Location: Location: location.
Expertise: Design, HTML
Software: Espresso, Photoshop, Mail.app
 
Posts: 398
iTrader: 7 / 100%
 

santa is on a distinguished road

Send a message via ICQ to santa Send a message via AIM to santa Send a message via MSN to santa Send a message via Yahoo to santa Send a message via Skype™ to santa

  Old

I get a 500 error.

Reply With Quote
11-29-2010, 05:17 PM
#4
festvs is offline festvs
festvs's Avatar
Status: I'm new around here
Join date: Nov 2010
Location:
Expertise: Design and programming
Software: Dreamweaver, photoshop cs5
 
Posts: 16
iTrader: 0 / 0%
 

festvs is on a distinguished road

  Old

Firts jQuery script :
HTML Code:
    <script type="text/javascript" src="jquery-1.2.6.min.js"></script>
		<script type="text/javascript">
		$(function() {
			$('ul.hover_block li').hover(function(){
				$(this).find('img').animate({top:'182px'},{queue:false,duration:500});
			}, function(){
				$(this).find('img').animate({top:'0px'},{queue:false,duration:500});
			});
			$('ul.hover_block2 li').hover(function(){
				$(this).find('img').animate({left:'300px'},{queue:false,duration:500});
			}, function(){
				$(this).find('img').animate({left:'0px'},{queue:false,duration:500});
			});
		});
		</script>
Second jQuery Script :
HTML Code:
<script type="text/javascript">
		$(document).ready(function() {
		
			$curtainopen = false;
		
			$(".rope").click(function(){
				$(this).blur();
				if ($curtainopen == false){ 
					$(this).stop().animate({top: '0px' }, {queue:false, duration:350, easing:'easeOutBounce'}); 
					$(".leftcurtain").stop().animate({width:'60px'}, 2000 );
					$(".rightcurtain").stop().animate({width:'60px'},2000 );
					$curtainopen = true;
				}else{
					$(this).stop().animate({top: '-40px' }, {queue:false, duration:350, easing:'easeOutBounce'}); 
					$(".leftcurtain").stop().animate({width:'50%'}, 2000 );
					$(".rightcurtain").stop().animate({width:'51%'}, 2000 );
					$curtainopen = false;
				}
				return false;
			});
			
		});	
	</script>
What is wrong ?

Reply With Quote
Reply    


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

  Posting Rules  
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump:
 
  Contains New Posts Forum Contains New Posts   Contains No New Posts Forum Contains No New Posts   A Closed Forum Forum is Closed