skip to Main Content

Jquery – Check if textbox exist in table cell or not

Here is my code: var result = ''; var rows = $("#table_wf tbody tr input[type='checkbox']:checked").closest('tr'); for (var i = 0; i < rows.length; i++) { var row = rows[i] result += rows[i].cells[0].innerHTML; var v = rows[i].cells.find("td input[type=text]"); if (rows[i].cells.find("input[type=text]").length) {…

VIEW QUESTION

$_POST variables empty after send with jquery ajax

This form was working till jan/24. Now, all variables are empty on my $_POST. Here is my code: HTML: <form id="main-schedule-form" name="schedule-form" method="post" action="sendemailschedule.php"> <label for="nome">Nome*</label> <input type="text" class="form-control" id="nome" name="name" required/> <label for="email">E-mail*</label> <input type="email" class="form-control" id="email" name="email" required/>…

VIEW QUESTION

Jquery – how do i fic my html code , i doesent load

<div class="carousel"> <a class="carousel-item" href="#"> <img src="./mclaren-1.jpg" alt=""> </a> <a class="carousel-item" href="#"> <img src="./mclaren-2.jpg" alt=""> </a> <a class="carousel-item" href="#"> <img src="./mclaren-3.jpeg" alt=""> </a> <a class="carousel-item" href="#"> <img src="./mclaren-4.jpeg" alt=""> </a> <a class="carousel-item" href="#"> <img src="./mclaren-5.jpeg" alt=""> </a> </div> </div> </div>…

VIEW QUESTION

Bootstrap 5.3 events not working in jQuery .on event

This is such an odd issue. I've never had any issues like this before... Here is my dropdown... $('#mydropdown').on('show.bs.dropdown', function() { console.log('hit 1'); }); $(document).on('show.bs.dropdown', '#mydropdown', function() { console.log('hit 2'); }); <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script><script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script> <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"/> <div class="dropdown" id="mydropdown">…

VIEW QUESTION
Back To Top
Search