Bonjour,

Je sollicite votre aide car j'ai un soucis aux niveau d'un script jquery que j'ai intégrer à un site.
le code marche parfaitement sur google chrome mais pas sur IE ni sur Firefox

Le soucis vient de la fonction .html qui bloque le bouton de mon formulaire

voici le code jquery:
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
$(document).ready(function(){
	/* The following code is executed once the DOM is loaded */
 
	$('.sponsorFlip').bind("click",function(){
 
		// $(this) point to the clicked .sponsorFlip element (caching it in elem for speed):
 
		var elem = $(this);
 
		// data('flipped') is a flag we set when we flip the element:
 
		if(elem.data('flipped'))
		{
			// If the element has already been flipped, use the revertFlip method
			// defined by the plug-in to revert to the default state automatically:
 
			elem.revertFlip();
 
			// Unsetting the flag:
			elem.data('flipped',false)
		}
		else
		{
			// Using the flip method defined by the plugin:
 
			elem.flip({
				direction:'lr',
				speed: 350,
				onBefore: function(){
					// Insert the contents of the .sponsorData div (hidden from view with display:none)
					// into the clicked .sponsorFlip div before the flipping animation starts:
 
					elem.html(elem.siblings('.sponsorData').html());  // Cette ligne
 
 
				}
			});
 
			// Setting the flag:
			elem.data('flipped',true);
		}
	});
 
});
J'ai essayé de changer la fonction .html par .append, cela fonctionne mais ne réagis pas comme la .html car ce script me permet de retourné une image et voir une description sauf qu'il prend l'image avec la fonction append. voici l'adresse ou j'ai récupérer le script pour mieux comprendre http://tutorialzine.com/2010/03/spon...ip-jquery-css/

Merci de votre aide