Bonjour,

je ne sais pas si le probleme vient du return false
pouvez vous m'aidez à trouver mon probleme ??

voici le code:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<head>
<link rel="stylesheet" href="style_tchat.css" />
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="animation.js"></script>
<script> 
	<?php if(empty($_POST['pseudo_creation']) && empty($_POST['mdp_creation'])){ ?>
			$(document).ready(function(){
			$('#new').click(function(){
			$('#new_inscription')
				.animate({left : '-=50'},{duration: 1000})
				.animate({left : '+=100'},{duration: 1000})
				.animate({left : '-=70'},{duration: 1000})
				.animate({left : '+=70'},{duration: 1000})
				.animate({left : '-=50'},{duration: 1000});
				return false();
			});
			});
	<?php }; ?>
</script>