Mohamed Kamel
Mohamed Kamel
### Use case: description, code ``` $(document).ready(function () { $('#download_img').on('click', function (e) { e.preventDefault() domtoimage.toBlob(document.getElementById('img_container')) .then(function (blob) { window.saveAs(blob, 'image_name.jpg'); }); }) }); ``` the image some time cutting and...
i'm try to use ``` $(selector).on('change',function(){ console.log('Hello') }) ``` and it's not wortking