Showing uploads using jquery.media.js

Hi guys,

Pardon for my newness to Rails and javascript jargon and things, I’m
having a problem displaying uploads using jquery.media.js.

jQuery(document).ready(function() {

var path = ‘/uploads/<%= @myfile.filename %>’;

$(’.container’).html(“stuff”);

jQuery(‘a.media’).media({
width: 400,
height: 300
});
});

So when I change the path to a static URL it works but not with this
dynamic fanciness you see above. The uploader is fine and I’m able to
point to one of the uploads and it works. Maybe its a syntax thing? I’m
not sure what other kind of code I need to post but anyways, I’d love
for some tips or feedback. Thanks in advance! :slight_smile:

On Fri, Jan 6, 2012 at 4:01 PM, Brittany L. [email protected]
wrote:

So when I change the path to a static URL it works but not with this
dynamic fanciness you see above. The uploader is fine and I’m able to
point to one of the uploads and it works. Maybe its a syntax thing? I’m
not sure what other kind of code I need to post but anyways, I’d love
for some tips or feedback. Thanks in advance! :slight_smile:

You mean that this:

var path = ‘/uploads/<%= @myfile.filename %>’;

is not working? does your file ends in js.erb?

Javier

Javier Q. wrote in post #1039785:

On Fri, Jan 6, 2012 at 4:01 PM, Brittany L. [email protected]
wrote:

So when I change the path to a static URL it works but not with this
dynamic fanciness you see above. The uploader is fine and I’m able to
point to one of the uploads and it works. Maybe its a syntax thing? I’m
not sure what other kind of code I need to post but anyways, I’d love
for some tips or feedback. Thanks in advance! :slight_smile:

You mean that this:

var path = ‘/uploads/<%= @myfile.filename %>’;

is not working? does your file ends in js.erb?

Javier

Nay, it acts like it’s querying that path too early and is getting
nothing but media.js does do what it’s suppose to do just minus the
media file. And I’m working in… .rhtml.

On Fri, Jan 6, 2012 at 4:31 PM, Brittany L. [email protected]
wrote:

Nay, it acts like it’s querying that path too early and is getting
nothing but media.js does do what it’s suppose to do just minus the
media file. And I’m working in… .rhtml.

I thought that code were on a separate file
have you tried using link_to inside the html? in order to avoid that
path
variable…