Posts by ricardogobbo • 211 points
5 posts
-
1
votes1
answer262
viewsA: Force autoplay on video(not mute)
Tail that answer in general stackoverflow. You have to use the onloadeddata event as you may happen to give play without first loading the video. <video…
-
0
votes1
answer64
viewsA: C++ PROGRAM JUMPING INPUT
The primitive type char accepts only one character. If you type above one, the input buffer waits for the next cin and feeds it to the next character. I recommend using the object type string or an…
c++answered ricardogobbo 211 -
-1
votes1
answer324
viewsA: How to open the browser certificate selection option?
To sign documents you would need private client key. This window only offers public key. Therefore, it is not possible to carry out this action the way you are planning. For the sake of curiosity,…
-
1
votes1
answer88
viewsA: Development status of the Eclipse Grails-IDE plugin?
I believe the plugin will no longer be maintained by the team. There is a comment in a spring-ide archive site reporting the fact: The original team that created grails-ide is not Currently Working…
-
6
votes5
answers64617
viewsA: Monetary mask with jquery.inputmask
With the jQuery Mask Plugin just use the following: $('.money').mask('#.##0,00', {reverse: true}); I believe this plugin is better than jquery.inputmask…