Posts by vindite • 36 points
5 posts
-
0
votes1
answer54
viewsA: Problems with Middlwares - Laravel 5.4
Dude, I believe the problem is in your class, because it is missing the instance of Redirectresponse, which contains the properties of headers needed for redirection, try to add this call. Will stay…
-
1
votes1
answer114
viewsA: Catch name of tag span
<script> var str = document.getElementById("pegarnome").innerHTML; var arr = str.split(" "); var res = arr[0]; document.getElementById("nome").innerHTML = res; </script> Split returns a…
javascriptanswered vindite 36 -
0
votes2
answers89
viewsA: CSS and HTML display
Use the inline display this way, hugs. #menu ul li { display: inline; }
-
1
votes1
answer336
viewsA: Filter elements with Radiobutton in HTML and JS and Regex
A small change in your code, and it will work perfectly, note. // init Isotope var $grid = $('.grid').isotope({ itemSelector: '.element-item', layoutMode: 'fitRows' }); // filter functions var…
-
0
votes2
answers573
viewsA: Call a form depending on selected radio inputs
$(document).ready(function() { $('input[type="radio"]').change(function(event) { var option1 = $('input[name="opcao"]').filter(':checked').val(); var option2 =…