skip to Main Content

Get id of clicked row-Twitter bootstrap

I am using "jquery": "^3.4.0" and DataTables 1.10.18. I am having the following table: $(document).ready(() => { var table = $('.datatable-responsive').DataTable(); }); $("#edit-row").click(() => { var c = this.id console.log(c) }); <!DOCTYPE html> <html lang="en"> <head> <!-- Global stylesheets -->…

VIEW QUESTION

Override js file in the Magento2 checkout

I try to override a js file in the magento2 checkout. I want to override /vendor/magento/module-checkout/view/frontend/web/js/view/form/element/email.js. So I copied the file in my module to: /app/code/Myself/Test/view/frontend/web/js/view/form/element/email.js I did a small change in /app/code/Myself/Test/view/frontend/web/js/view/form/element/email.js: /** * Callback on changing email property…

VIEW QUESTION
Back To Top
Search