| How to pass php variable to jquery javascript
|
chrissim

msg:4431214 | 10:20 am on Mar 20, 2012 (gmt 0) | i have this config.php update and write new variable $uploaddir everytime i create new folder and i need to pass those variable 'new upload folder' to jquery javascript href below. Please help as i been pulling my hair for several days now... <?php $uploaddir = '../folder/newfolder/'; ?> |
| .bind('uploadSuccess', function(event, file, serverData){ var item=$('#log li#'+file.id); item.find('div.progress').css('width', '100%'); item.find('span.progressvalue').text('100%'); var pathtofile='<a href="../$uploaddir/'+file.name+'" target="_blank" >view upload file »</a>'; item.addClass('success').find('p.status').html('Done! | '+pathtofile); }) |
|
|
chrissim

msg:4431221 | 10:46 am on Mar 20, 2012 (gmt 0) | nevermind guys i solved it
|
|
|