Adds jQuery collection to objects that will be used as global events context if provi...
[jquery.git] / test / data / css.php
1 <?php
2 error_reporting(0);
3 $id = isset ( $_REQUEST['id'] ) ? $_REQUEST['id'] : null;
4 $wait = isset( $_REQUEST['wait'] ) ? $_REQUEST['wait'] : null;
5
6 if ( $wait ) sleep( $wait );
7
8 header("Content-type: text/css");
9
10 if ( $id ) {
11         ?>
12         div#<?= $id ?> { margin-left: 27px }
13         <?php
14 }
15 ?>