skip to Main Content

Elementor – FIXED: WordPress site Uncaught TypeError: jQuery(…).live is not a function causing images with JS to not show

I am building a WordPress site and suddenly am getting the error: Uncaught TypeError: jQuery(...).live is not a function at HTMLDocument.<anonymous> (main.js?ver=1.1:214) at i (jquery.js?ver=1.12.4-wp:2) at Object.fireWith [as resolveWith] (jquery.js?ver=1.12.4-wp:2) at Function.ready (jquery.js?ver=1.12.4-wp:2) at HTMLDocument.J (jquery.js?ver=1.12.4-wp:2) I am unsure how…

VIEW QUESTION

Laravel Logout Using AJAX – Jquery ajax

I'm trying to write an AJAX script that will log me out of Laravel using a POST request: $.ajax({ headers: { 'X-CSRF-Token': "{{ csrf_token() }}" }, type: "POST", url: '/logout', success: function() { window.location.replace('https://portal.nchinc.com/?logout=timeout'); } }); The result is I…

VIEW QUESTION

Can't use the rows being retrieved from my database to build <li> items – Jquery ajax

app.get('/api/getTransactions/', function(req, res){ console.log("GET: Transactions"); let sql = 'SELECT * FROM balance;'; db.all(sql, [], function(err, rows){ var result = {}; if(err){ res.status(404); result["error"] = err.message; } else { console.log(JSON.stringify(rows)); res.json(rows); } }); }); function createTL() { $.ajax({ method: "GET", url:…

VIEW QUESTION

Read value from DOM json – Magento

When i do Ctrl+U, there is below json in my page DOM <script type="text/x-magento-init"> { "#country": { "regionUpdater": { "optionalRegionAllowed": true, "regionListId": "#region_id", "regionInputId": "#region", "postcodeId": "#zip", "form": "#form-validate", "regionJson": { "config": { "show_all_regions": true, "regions_required": [ "AU", "BR", "CA",…

VIEW QUESTION
Back To Top
Search