Posts by user12141 • 195 points
6 posts
-
1
votes2
answers3250
viewsQ: How to submit form without being redirected by the action attribute?
The structure of the site is as follows: index.html: <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script> // verifica se a página foi…
-
4
votes1
answer321
viewsQ: How to prevent a user from storing mp3 files, thus preventing them from being able to distribute them?
First of all, it is good to mention that my doubt arises following another question that I put here in stackoverflow in pt and that can be read in: Web Hosting or Streaming Hosting? I am developing…
-
1
votes1
answer111
viewsQ: Web Hosting or Streaming Hosting?
I am developing a project, in which the idea is to allow the user to hear (from a player -> plugin in javaSript embedded in the index.php page) the selected music... In order to provide a good…
-
0
votes1
answer52
viewsQ: Make each button, during the onclik event, trigger its own window?
The following code will display several "tumbnails", where each has a button designated "tracklist". But it happens, for example, if I click one of the buttons and do not close the window, all other…
-
5
votes1
answer587
viewsQ: How do I eliminate the Focus "shadow" from a <button></button>?
After clicking the button this gets a shadow effect (bluish) around the same... I leave an image for you to understand my doubt. How to remove this outer line?…
-
7
votes3
answers11791
viewsQ: Overwrite a <button> to a <img>
The idea is to make a "tumbnail" where the play button is (centered) on the image... <div> <img src='imagems/imagem1.png'> <button>Play</button> </div> Thank you for…