Posts by Igor Siqueira • 120 points
10 posts
-
1
votes2
answers307
viewsA: pass parameters through jQuery-ui Dialog
If you want to create dynamic interactions, you cannot use id! So the interaction works only on the first element and the rest no longer works! You must use a class in each element and take the…
-
1
votes1
answer51
viewsA: Eloquent Laravel - Migration and Model
We need to define the third table, which is the dynamic table. Follow an example Now, set the following scheme in the migration file. public function up() { Schema::create('category_product',…
-
-1
votes2
answers321
viewsA: How to recover information from Laravel URL?
I noticed some practices that are not very advisable, such as a check(if) inside the Laravel route file. 1° Step - Remove the logic of this file and move into a function in the model. Where your…
-
2
votes4
answers82
viewsA: How do I limit a text box?
Following is an example where the field size will increase if the text is larger than the initial size set. Click Place a text, click Out and click the input again to test! $( "#texto"…
htmlanswered Igor Siqueira 120 -
1
votes1
answer585
viewsA: Take dynamically loaded element attribute without event click
My first suggestion would be to use class on these elements that you want to take instead of id. In most of my projects when I have a dynamic list and need to perform some action in them we use…
jqueryanswered Igor Siqueira 120 -
2
votes3
answers3777
viewsQ: Regular Expression - Name + Space + Surname
Hello ,I’m looking for a regular expression to validate name and last name requirement. But she must accept accents and a specific case that would be: Igor D Sant
regexasked Igor Siqueira 120 -
1
votes1
answer476
viewsQ: Redirect Wp-admin
I uploaded a new wordpress site, changed the urls in the database and changed the settings of db in wp-config. All right when I try to access using the url: http://hmaquecedores.com.br/wp-admin it…
-
0
votes1
answer353
viewsQ: Authentication does not work after running make:auth
I execute the command: SmartFlex> php artisan migrate within my project and it is finished correctly. The options of login and registration are available at view, but while trying to access the…
-
0
votes1
answer133
viewsQ: Condition to call mask!
How can I read the first character typed in the input and the part of the condition be called a specific mask. if(Se o primeiro caractere no input for letra){ }else{ $('#login_username').mask('(99)…
-
1
votes2
answers1867
viewsA: How to create installer for offline web system PHP + Mysql
In this field I advise using Wamp, for which you have access in this format. See this link: http://www.wampserver.com/en/ With it you emulate a web server,and can install on the client’s machine to…