RailsCasts Pro episodes are now free!
Learn more or hide this
GitHub User: fighting-spirit
Thanks for the revision!
also check the .live method in jQuery. from the doc:
.live
Attach an event handler for all elements which match the current selector, now and in the future.
so you can do something like
$('.edit_task').live('click', function ... ... ...
I used the method below to generate page previews of uploaded pdf files.
system "convert -verbose -density 150 #{file_path}[#{from_page}-#{to_page}] -quality 100 #{output_file_path}.png"
HIH
Thanks for the revision!
also check the
.live
method in jQuery. from the doc:so you can do something like
I used the method below to generate page previews of uploaded pdf files.
system "convert -verbose -density 150 #{file_path}[#{from_page}-#{to_page}] -quality 100 #{output_file_path}.png"
HIH