ajax tests: Replaced $ with jQuery.

This commit is contained in:
Scott González 2008-06-05 18:11:29 +00:00
parent 1e9593646f
commit 24eb176f0c
4 changed files with 4 additions and 4 deletions

View 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>

View file

@ -1,3 +1,3 @@
var foobar = "bar";
$('#ap').html('bar');
jQuery('#ap').html('bar');
ok( true, "test.js executed");

View 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>

View 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>