Posts by R. Eitz • 44 points
3 posts
-
1
votes2
answers104
viewsA: How to hide empty query post?
Maybe the CSS selector :empty be useful in that case. Would that be: .sua-classe:not(:empty){ background-color: black; } A working jsFiddle to illustrate: http://jsfiddle.net/j5jawp49/ More…
-
-1
votes2
answers267
viewsA: Delete method returns unencumbered page
The problem is on your route, you just specified: Route::delete('receitas/{id}', ReceitaController@getDestroy ); When it really should be: Route::delete('receitas/delete/{id}',…
-
2
votes1
answer733
viewsA: Iterate a list and check if there is a component in jQuery
The problem is in your If if(this, $('#button-cancel-passenger').length). Example of the same working IF. $('ul > li').each(function () { var button = $(this).find("button"); if (! button.length)…