Posts by melkysalem • 325 points
10 posts
-
2
votes3
answers237
viewsA: Apply cascade validation functions
I believe that your validation should be done, of course, both in the front end and in the back end, so you can work on changing the focus of the field. $("#username").blur(function(){…
-
3
votes2
answers748
viewsA: How to detect when the person starts speaking using Speechrecognition() in Javascript
I believe I can use this plugin for what you want. <script src="//cdnjs.cloudflare.com/ajax/libs/annyang/1.1.0/annyang.min.js"></script> <script> if (annyang) { // vamos definir o…
-
2
votes1
answer869
viewsA: How to make a mosaic type gallery
You would be wanting a jquery plugin like these? http://masonry.desandro.com/ http://sapegin.github.io/jquery.mosaicflow/ http://codecanyon.net/item/jquery-tiles-gallery/full_screen_preview/2281417…
jqueryanswered melkysalem 325 -
2
votes3
answers2451
viewsA: How to make a mask in MS Access that works for 10 or 11 digit phones?
Put the following script in the aoSair command of the text box focus If isnull(Txttelefone) or TxtTelefone="" Then exit sub Select case len(TxtTelefone) Case 10 TxtTelefone=Format("00 0000-0000")…
ms-accessanswered melkysalem 325 -
3
votes2
answers96
viewsA: Undefined is not a Function in Node.js using Mongoose
I believe your problem is in the amount of parameters passed in the function call, Voce passed four parameters in your call in how much in the same function Voce used 5 parameters. f(fbUID !==…
-
3
votes5
answers11840
viewsA: Upload limit with php.ini in Wordpress
I suppose that Voce has a php hosting and with Cpanel access to it, the first one I would try would be to put a php.ini file in /public_html with the following content: ;;;;;;;;;;;;;;;; ; File…
-
1
votes1
answer244
viewsA: How to put a global shortcut to restart servers in debug mode in Eclipse?
In my I start the server as debug holding Alt+Shift+D, then drop and then press R.
-
1
votes1
answer119
viewsA: How to fix Log error?
Your problem really must be the lack of the Struts library in your project’s libpath: if you are using Maven in your project add the following dependency in pom.xml <dependency>…
-
1
votes1
answer74
viewsA: How to put Outlines in the text
An output would be to use this source to do what you want: import java.awt.BasicStroke; import java.awt.Color; import java.awt.Dimension; import java.awt.Font; import java.awt.GradientPaint; import…
-
1
votes1
answer1299
viewsA: No return of geolocation using Phonegap
Add this to your Androidmanifest.xml <uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" /> And then try to simulate your locations within the app itself and then in the…