Posts by Lucas Marçal Dos Santos • 135 points
4 posts
-
1
votes2
answers251
viewsQ: Generating thumbnails through Filereader
I want to generate thumbnails of images that the user selects. My problem is that always one of the images generates 3 thumbnails Demo here: http://jsfiddle.net/gTLXp/…
-
2
votes3
answers997
viewsA: How do I add jQuery library with Javascript?
Pass a callback function as parameter for the "colocaScript" function and this callback should run in the "onload" of the script. function colocaScript(callback) { var scriptJquery =…
-
9
votes3
answers2241
viewsQ: How to control tuition and access to the application?
I’m developing a system that should block the access of those who do not pay the monthly bill. I took a look at the design Boletophp for generating billets and partially attends me. I can generate…
phpasked Lucas Marçal Dos Santos 135 -
1
votes1
answer645
viewsA: How to play sound in a Chrome app?
Already tried using the Web Audio API? var context = new webkitAudioContext(); var oscillator = context.createOscillator(); oscillator.connect(context.destination); oscillator.frequency.value = 780;…