Posts by David • 13 points
5 posts
-
0
votes1
answer244
viewsA: BOOTSTRAP MODAL BUG ON IOS
<iframe src="" name="iframe_pessoa" id="iframe_pessoa" style="border:none;" height="390" width="100%"></iframe> I noticed that you have height 390 maybe the problem could be this! You…
-
-2
votes2
answers4995
viewsA: How to resolve is not defined at Htmlbuttonelement.onclick
"Function addCart(){ }" just put this in a javascript that stops giving this error 0.0 If the error continues is because you have a bad connection, maybe to the js file
-
-1
votes3
answers515
viewsA: Button type reset calls a function
It is easy to... js does not call the function "showConducer" again because it is only called each time it Reload on the page. That is the problem is that the function is not called after.
-
0
votes2
answers283
viewsA: SQL Firebird search for last names by initial letter
Good afternoon, from what I understand you want all the names started by x letter select sobrenome from table where sobrenome like 'X%'; Where X represents the first letter of the name and then "%".…
-
1
votes1
answer94
viewsA: Difficulty writing a REGEX to validate URL
Here’s how you can do it :) if (a_tua_variavel.indexOf('https://firebasestorage.googleapis.com/v0/b/nome-app/') > -1){ alert("Tem parte do link"); }