Posts by Lai32290 • 177 points
9 posts
-
0
votes3
answers88
viewsA: What is the correct way to call function within another nested function?
Functions declared in this way are not possible to be called by onfocus, by function only principal. In order to perform this call, you need to extract the function out even. Because the form that…
javascriptanswered Lai32290 177 -
0
votes2
answers72
viewsA: Selector in CSS differences
The difference is that with the > means that the Elemental has to be direct child, for ex: <div class="figure-box"> <div><div><div><div> <figure> <div>…
-
2
votes1
answer694
viewsQ: Git init did not create branch master
I’m trying to give a git init in my project, it returns successfully: Initialized empty Git repository in C:/myprojetPath/.git/ But because when I type git branch, it returns no branch? $ git branch…
-
3
votes2
answers168
viewsQ: How to select with regex?
I am trying to format text of the following type 123,345,234 //tem que ficar 123345,234 abc,def,adf //tem que ficar abcdef,adf 123,345,678,abc,qualquer,coisa //tem que ficar…
-
0
votes3
answers3091
viewsA: How to show or hide an element with Angularjs, without creating variable
Add initial editing value <table class="table"> <tr> <td> <input type="checkbox" ng-click="selecionarTudo($event, lista)" ng-init="editar[$index] = false"> </td>…
-
1
votes3
answers3091
viewsQ: How to show or hide an element with Angularjs, without creating variable
I’m trying to make a table, where it shows the list of orders and the button for editing Lita of request: var lista = [ {id: 1, nome: 'Pedido 1', ano1: 100, ano2: 200}, {id: 2, nome: 'Pedido 2',…
-
1
votes2
answers755
viewsQ: How to throw a block on top of the other block?
I’d like to create a div, containing a block of text and an image, and the image needs to cover the text, while passing the mouse on the image, the image will make it semi transparent, thus showing…
-
0
votes2
answers353
views -
0
votes1
answer227
viewsQ: How to set HTML attribute with @Yield() in Laravel?
I’m trying to create a template for my control panel in Laravel. I want the top right corner to have a BACK button, where I can set the link with the @yield I tried to make the following code, but I…