]> source.dussan.org Git - jquery.git/commitdiff
ajax tests: Replaced $ with jQuery.
authorScott González <scott.gonzalez@gmail.com>
Thu, 5 Jun 2008 18:11:29 +0000 (18:11 +0000)
committerScott González <scott.gonzalez@gmail.com>
Thu, 5 Jun 2008 18:11:29 +0000 (18:11 +0000)
test/data/test.html
test/data/test.js
test/data/test.php
test/data/test2.html

index fc6dc3860789adbca3187c2107b4cc77bc950dff..eec028e90f92b824b095f8cd824fe474b420c300 100644 (file)
@@ -1,6 +1,6 @@
 html text<br/>
 <script type="text/javascript">/* <![CDATA[ */
-testFoo = "foo"; $('#foo').html('foo');
+testFoo = "foo"; jQuery('#foo').html('foo');
 ok( true, "test.html executed" );
 /* ]]> */</script>
 <script src="data/test.js"></script>
index f8bdd091e43d23f64a6422b22c747e71e3d7db4a..a41cb232b5d772566953632b4b5aca08188233ea 100644 (file)
@@ -1,3 +1,3 @@
 var foobar = "bar";\r
-$('#ap').html('bar');\r
+jQuery('#ap').html('bar');\r
 ok( true, "test.js executed");\r
index 9dbea97983430e066600fa39a55291b44881b9d4..3d08f3253ad3fbd381862165ed63998d45e801dd 100644 (file)
@@ -1,6 +1,6 @@
 html text<br/>
 <script type="text/javascript">/* <![CDATA[ */
-testFoo = "foo"; $('#foo').html('foo');
+testFoo = "foo"; jQuery('#foo').html('foo');
 ok( true, "test.php executed" );
 /* ]]> */</script>
 <script src="data/test.js?<?php srand(); echo time() . '' . rand(); ?>"></script>
index ebf610e438bbec5391bfbe11a2c55bd05b53cf03..1df6151a0c5f345854193ebb5051dc45983d00da 100644 (file)
@@ -1,5 +1,5 @@
 <script type="text/javascript">
 var testFoo = "foo";
-$('#foo').html('foo');
+jQuery('#foo').html('foo');
 ok( true, "test2.html executed" );
 </script>