jquery

jquery

jquery – Running a script through the 'name' attribute doesn't work

Question: Follow the code: <select class=”form-control” name=”dd_medidaAplicada” id=”dd_medidaAplicada”> <option value=”0″></option> <option value=”cancelada”>Advertência Cancelada</option> <option value=”escrita”>Advertência Escrita</option> <option value=”verbal”>Advertência Verbal</option> <option value=”dispensa”>Dispensa por Justa Causa</option> <option value=”suspensao”>Suspensão</option> I want to run a script every time selected item is changed: $(“input[name=dd_medidaAplicada]”).on(‘change’, function() { alert( this.value );}) However, through the name attribute I …

jquery – Running a script through the 'name' attribute doesn't work Read More »

jquery – Can't connect Slick slider using Webpack. Error $(…).slick is not a function

Question: I'm trying to connect to the slick project via webpack, following the example of the author's repository. In this repository, the slider fires. It doesn’t start in my project, although it seems to be connected in almost the same way (the difference is that the project uses gulp, webpack …

jquery – Can't connect Slick slider using Webpack. Error $(…).slick is not a function Read More »

jquery – Hide\show div

Question: I have the Nth number of such elements on the page: <div class=”main”> <a class=”text”>Любой текст</a> <div class=”buttons”>кнопки</div> //этот элемент скрыт по-умолчанию. </div> I need that when I click on <a class=”text”>Любой текст</a> Showing div buttons . And only the one that is in this main block. I found …

jquery – Hide\show div Read More »

jQuery DataTables numeric sort in column containing hidden HTML

Question: Making use of jQuery DataTables , we can indicate the intended sorting type : $(‘#example’).dataTable( { “aoColumnDefs”: [ { “sType”: “numeric”, “aTargets”: [ 0 ] } ] }); But if HTML is present, hidden or not, the numeric sorting stops working: var oTable = $(“#products”).dataTable({ “aaData”: [ [1, “Dinner”, …

jQuery DataTables numeric sort in column containing hidden HTML Read More »

Scroll to Top