Drag drop Upload Example

https://github.com/blueimp/jQuery-File-Uploadhttps://www.dropzonejs.com/https://www.dropzonejs.com/bootstrap.htmlhttps://fineuploader.com/demos.htmlseo js araçı https://github.com/aFarkas/lazysizespure javascript modal boxhttps://micromodal.vercel.app/#introductionhttps://dimsemenov.com/plugins/magnific-popup/https://biati-digital.github.io/glightbox/https://photoswipe.com/

HandleBar.js nedir

Handlebars, Mustache şablon dilinin eksik olan bazı özelliklerinin eklendiği hafif bir template dir. Ben monolitic uygulamalarımda çok küçük olduğu için bunu kullanıyorum json verisini basmak çok kolay oluyor hatta aşırı…

js each foreach

https://hashnode.com/post/7-different-ways-to-make-ajax-calls-in-javascript-in-2019-cjr7pi2fl000gdjs2zgssqwhrhttps://www.sitepoint.com/jquery-each-function-examples/https://plnkr.co/edit/4DNXPn5eUpKVt4zRYEcp?previewhttps://www.freecodecamp.org/news/master-the-art-of-looping-in-javascript-with-these-incredible-tricks-a5da1aa1d6c5/https://www.c-sharpcorner.com/article/javascript-array-foreach-method-and-its-alternatives/https://forums.asp.net/t/2111929.aspx?how+to+loop+through+json+array+in+jquery+        let url = new URL(myAjax.ajaxurl)url.search = new URLSearchParams({    action: "ch_ajax_add_to_cart", "id": myID,     "amount": donatAmount})    fetch(url, {            method: 'get’,             headers: {                "X-Requested-With": "XMLHttpRequest"              },              }).then(res => res.json())         // .then(response => console.log(‘Success:’, JSON.stringify(response)))          .catch(error => console.error('Error:’, error)); https://forums.asp.net/t/2111929.aspx?how+to+loop+through+json+array+in+jquery+      https://jsfiddle.net/pmw57/ancj4L05/   https://selmantunc.com.tr/post/627504220838510592/js-each-foreach Önemlimustache js template https://codepen.io/johnsonshara/pen/mPzbBOhttps://github.com/stunc-git/php-il-ilce-for-ajax/blob/master/index.php

PhantomJS Ubuntu install & web capture

First, install or update to the latest system software.sudo apt-get update sudo apt-get install build-essential chrpath libssl-dev libxft-dev Install these packages needed by PhantomJS to work correctly.sudo apt-get install libfreetype6…

Javascript “Bu sayfayı yazdır örneği“

Bu yazımda web sayfalarının çıktısı alma olayını anlatacağım aslında bunun için css tag olayın print tanımı verilir ve çıktısı alınacak sayfada göremeyecek şeyler ve ona özel fontlar tanımlanır , fakat…

Github da okunası yazılar & faydalı linkler

https://webrazzi.com/2017/07/17/uygulama-programlama-arayuzu-api/Big Data ya nereden başlamalı https://github.com/onurakpolat/awesome-bigdataSistem altyapıları hakkında bilgiler https://cliexperiences.wordpress.com/http://highscalability.com/VPS karşılaştırması https://github.com/joedicastro/vps-comparisonReact ve javascript geliştiriciler için Airbnb nin hazırladığı javascript de kod yazma stili https://github.com/airbnb/javascriptArayüz geliştiriciler için  HTML, CSS and JS için en iyi…

wordpress ajaxurl is not defined’ fix

if ‘ajaxurl is not defined’ error fix functions.php write add_action('wp_head’,'ajaxurl_’); function ajaxurl_() {    ?> <script type=“text/javascript”> var ajaxurl = ’<?php echo admin_url('admin-ajax.php’); ?>’; </script> <?php }