How To Add Url To An Image In Fabric.js?
Using object.on('selected', function() {}), I can get the image object that is clicked. My intent is to redirect to an URL by clicking it. How can I add an URL to an image, or more
Solution 1:
You can simply navigate to the target page in the selected
event handler:
object.on('selected', function() {
window.location.href = "http://www.example.com/";
})
Post a Comment for "How To Add Url To An Image In Fabric.js?"