This may be a pretty basic or stupid question, but I couldn't find the answer online so...
Im using this relative url in JavaScript to add a div with an image. The relative url goes to the path of the image.
I'm not seeing an image and I don't know if that is because the relative url is wrong or something else. Is there any way to test if javascript does or does not find the image from this relative url?
I'll include the part of code, even though I think the problem is clear enough it itself.
$item.find('.item-content').append('<div class="dragable-item"><img
url="../Content/onderwijs/images/dragicon.png"/></div>');
Thank you in advance!