Posts by Rafael Ferreira • 33 points
2 posts
- 
		2 votes4 answers1418 viewsQ: How to format result with comma and dot?How do I format the result of a sum with comma and dot. The Result: 80.50 * 52 = 4189.00 As I intend: 80.50 * 52 = 4,189.00 My JS function calcular() { var valores1 =… javascriptasked Rafael Ferreira 33
- 
		1 votes1 answer284 viewsQ: Read Javascript on all Foreach itemsGuys, I have a foreach that loads several inputs, and I want my javascript code read on all inputs generated by foreach, someone can give me a tip on how to do ? Example <c:forEach…