Hallo,
ich möchte einen Link im Text einer .js Datei einfügen.
Genau genommen, möchte ich bei der LightBox eine "Per Whatsapp teilen"-Funktion einfügen, aber es funktioniert nicht. Hat jemand Ideen, wie man das realisieren kann?
Code
function Lightbox(options) {
this.album = [];
this.currentImageIndex = void 0;
this.init();
// options
this.options = $.extend({}, this.constructor.defaults);
this.option(options);
}
// Descriptions of all options available on the demo site:
// http://lokeshdhakar.com/projects/lightbox2/index.html#options
Lightbox.defaults = {
albumLabel: 'Bild %1 von %2<a href="whatsapp://send?text=Besuch%20Website.com">Per WhatsApp teilen</a>
',
alwaysShowNavOnTouchDevices: false,
fadeDuration: 600,
fitImagesInViewport: true,
imageFadeDuration: 600,
// maxWidth: 800,
// maxHeight: 600,
positionFromTop: 50,
resizeDuration: 700,
showImageNumberLabel: true,
wrapAround: false,
disableScrolling: false,
/*
Sanitize Title
If the caption data is trusted, for example you are hardcoding it in, then leave this to false.
This will free you to add html tags, such as links, in the caption.
If the caption data is user submitted or from some other untrusted source, then set this to true
to prevent xss and other injection attacks.
*/
sanitizeTitle: false
};
Alles anzeigen
Ich kenne mich halt leider 0 mit .js Dateien aus, vielleicht ist es auch nur ein simpeler Fehler.
Ich verwende dies hier: https://lokeshdhakar.com/projects/lightbox2/index.html
Grüße