Web developer notes about javascript, php, cms
[https://greencomet.net/] Blog Catalog Contacts Tools Image Scaling Problem in Outlook Layout 28.03.21 Layout Email faced the fact that in desktop Outlook (it turns out that someone else is using it), pictures were displayed on a strange scale. All pictures have been enlarged. Solved this problem as follows. Outlook-s... More Making a Query in Salesforce Using SSJS Other 09.04.21 Salesforce allows you to execute queries using a technology that resembles JavaScript. It is possible to work with JSON. And the results can be passed back to AMPscript. Requests are executed on the server side %%[ ... More Hide Scrollbar With CSS Layout 04.10.20 It is now possible to hide the scrollbar while retaining functionality using CSS without using JavaScript. .box{ -ms-overflow-style: none; /* IE and Edge */ scrollbar-width: none; /* Firefox */ } .box::... More Uploading file using ajax JavaScript 27.09.20 Let's upload a file to the server using ajax. Let's use axios. let formData = new FormData(), input = document.getElementById('file'); //"file" - key on server formData.append("file", input.files[0]); //... More Download file using ajax JavaScript 08.06.20 The task of downloading a file using ajax may be more difficult than it seems at first glance. First option Send the file as base64. Substitute the href attribute. And programmatically click on the link.There may be ... More [ 1 ] 2 3 4 5 > >> Categories JavaScript Layout PHP CMS Other ® COPYRIGHT 2021