Posts by Thiago Costa • 117 points
10 posts
-
0
votes1
answer49
viewsA: Reply of the full query of line breaks
According to the ASCII table \n means new line (new line), and how the browser interprets the html to mount the DOM \n does not have any effect directly, but fortunately there is an html tag…
-
0
votes0
answers45
viewsQ: How to use two packages using Illuminate Contracts Validation Validator
In my project I have two packages LaravelLegends/pt-br-validator and nuwave/lighthouse both use the Agreement Illuminate\Contracts\Validation\Validator to validate the fields, I would like to know…
laravelasked Thiago Costa 117 -
1
votes1
answer31
viewsA: How to put a Function Arrow in on onclik
You can put normally in onClick const log = () => { alert('debug') } <button onClick="log()">LOG</button>…
-
1
votes2
answers46
viewsA: My page does not fully populate the mobile window. Why?
Hello @Uan this is taking place because of width: 994px; that you gave in class .default-content-formatting, in my solution I changed to max-width: 994px;, but you can create a @media for the mobile…
-
0
votes0
answers1703
viewsQ: Curl error 6: Could not resolve host
Good afternoon staff I am trying to perform an authentication test using the Guzzlehttp, which in turn uses the Curl under the table, with no mystery: $http = new \GuzzleHttp\Client; $response =…
-
2
votes3
answers184
viewsQ: How to pass a personized function within a Jquery Change event?
Good morning I wonder if it is possible to do this inside Jquery: $(document).ready(function() { $("select").change(teste()); function teste() { alert($("select").val()); } }); <script…
jqueryasked Thiago Costa 117 -
0
votes2
answers814
viewsA: Load jQuery Multiselect options via Ajax
You are not able to include the options within select because when rendering the DOM to <div class="disciplinas"></div> is removed and Jquery is trying to include an html in a place that…
-
2
votes1
answer147
viewsA: Creating a CSS card
Opa Leandro all right my buddy? see that in the example you sent in each td there is an attribute data-label follow the example: <tr> <td data-label="Account">Visa - 3412</td>…
-
0
votes3
answers303
viewsA: How do I make the Alert() method in JS appear only 1 time when the user logs into the application?
The warning dialog should be used for messages other than require no response from the user other than the acknowledgement of the message. source A resource you could use to replace Alert is with…
-
2
votes1
answer52
viewsA: Question with logic to select div
Hello Leandrade everything right? To do the selected work I thought it best to include a ". chosen" class that contains all the css, then by clicking on a ". grid" removed all classes ". chosen"…