Hi allerseits,
habe folgendes Problem:
bei einem Projekt soll jQuery und Scriptaculous eingesetzt werden.
jQuery wird nach anleitung im noConflictMode eingebunden.
Der IE8 ignoriert aber die jQuery Function .width(value) bzw. .height(value)
siehe Beispiel:
Im IE7 funktioniert das Beispiel.
Hat einer ne Idee?
Was mich auch wundert:
finde bei google nix zum Thema scriptaculous jquery conflict width() ie (ausser wie man mit noConflict arbeitet)
THX in Advance
habe folgendes Problem:
bei einem Projekt soll jQuery und Scriptaculous eingesetzt werden.
jQuery wird nach anleitung im noConflictMode eingebunden.
Der IE8 ignoriert aber die jQuery Function .width(value) bzw. .height(value)
siehe Beispiel:
PHP-Code:
<!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" xml:lang="de" lang="de">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>jQuery vs. Scriptaculous</title>
<meta name="robots" content="noindex, nofollow">
<!-- JavaScript -->
<script type="text/javascript" src="../js/scriptaculous-js-1.8.3/lib/prototype.js"></script>
<script type="text/javascript" src="../js/scriptaculous-js-1.8.3/src/scriptaculous.js"></script>
<script type="text/javascript" src="../js/jquery-1.4.min.js"></script>
<script>
jQ = jQuery.noConflict();
jQ(document).ready(function(){
jQ("#test").click(function(){jQ("#stretchTest").width( 50 );});
});
</script>
</head>
<body>
<div id="test" style="width:100px; height:100px; background:green;">Klick me</div>
<div id="stretchTest" style="width:300px; height:200px; background:red;">xx</div>
</body>
</html>
Hat einer ne Idee?
Was mich auch wundert:
finde bei google nix zum Thema scriptaculous jquery conflict width() ie (ausser wie man mit noConflict arbeitet)
THX in Advance
Kommentar