Skip to main content
Inspiring
March 15, 2016
Question

Need some Javascript relative path help with Responsive HTML 5 output please

  • March 15, 2016
  • 1 reply
  • 253 views

I have my feedback working with the javascript code below linked to an image. Problem is that only the html files in the root are showing my image. How can I get the pages in subfolders to also find the image?

var mailSubject = 'Feedback on Offline Help File and/or Documentation';

var mailBody    = 'The page I was visiting was:  ' + location.href;

var mailDisplay = 'Email Feedback';

var bodyline =  '%0A%0APlease add your comments here:%0A%0A%0A%0A%0A%0A%0A%0AThank you for your valuable feedback.' ;

document.write(

  '<a title="Send Feedback on Help File and Documentation" href="mailto:xyz@company.com'

  + '?subject=' + escape(mailSubject)

  + '&body=' + escape(mailBody) + (bodyline)

  + '"><img src="./ImageRepository/feedbackicon.jpg" title="Email Feedback" border="none" alt="" /></a>'

);

This topic has been closed for replies.

1 reply

Captiv8r
Legend
March 15, 2016

Hi there

There is likely a way to code it so the image is found using the pathing. But if I were in your shoes, I would likely abandon attempting to sort the pathing and simply copy the image to each folder in my project. Then amending the code so it simply references the image. Not very pretty, but it should work.

Cheers... Rick