javascript - Cancel Image not showing in uploadify -
can tell me why uploadify event not showing cancel image?
my code is:
<script type="text/javascript"> <?php $timestamp = time();?> $(function() { $('#file_upload').uploadify({ 'formdata' : { 'timestamp' : '<?php echo $timestamp;?>', 'token' : '<?php echo md5('unique_salt'.$timestamp);?>' }, 'swf' : 'uploadify.swf', 'cancelimg' : 'uploadify-cancel.png', 'folder' : 'uploads', 'uploader' : 'uploadify.php', 'displaydata' : 'speed', 'buttonimg' : 'uploadify-cancel.png', 'removecompleted' : true, 'auto' : true }); }); </script>
the problem solved when edited image location in css page of uploadify , gave correct path of "uploadify-cancel.png" , worked.
Comments
Post a Comment