Posts by Luiz Paulo Lindenmaier • 101 points
4 posts
-
0
votes1
answer42
viewsA: Get parameter in . equal click pass onClick - jQuery
Stenio, you can receive as a parameter the function click event and, from it, use the preventDefault() function to prevent the Submit behavior from occurring. Then you can make the manipulation you…
-
0
votes1
answer81
viewsA: Dynamic columns in mongodb view
You can do this in the application, the closest that mongodb has in this sense is the $currentDate. I hope it helps. If you need something more, glue a snippet of the application code.…
-
0
votes2
answers2400
viewsA: Putting a responsive video on my web page
Do you have any examples of the code you’ve already done to analyze? In general, we use percentages in CSS properties to ensure responsiveness, but it’s pretty dependent on how you structured your…
-
0
votes2
answers1655
viewsA: Function append vs javascript
You have to bind in the line below the append by turning on the button with the already created function $(document).ready(function() { function save() { alert('Save!'); }…