Posts by NegoWell • 121 points
5 posts
- 
		0 votes0 answers50 viewsQ: Invert NumberWhat logic could I employ to make a program where I insert a number and then be reversed. ex: 123 to 321 PS: has to be a function. 
- 
		4 votes3 answers1301 viewsQ: Why are you concatenating instead of adding?My code is concatenating instead of adding. What is the error? var cFinal = 0; var cFabrica = prompt("Insira o valor de fabrica do veículo"); var comissao = 0.28 * cFabrica; var imposto = 0.45 *… javascriptasked NegoWell 121
- 
		0 votes1 answer597 viewsQ: How to edit tables in JavascriptI have a problem in a table that I did in html and javascript. The page consists of 3 input fields that with the inserted value is forwarded to the table below. However I would like to be able to… 
- 
		2 votes2 answers1235 viewsQ: Edit table elementsIs there any way to edit table elements created with a function JavaScript directly in the table, with a double click? I created a function that uses three inputs to print in the table their… 
- 
		3 votes1 answer390 viewsQ: Delete table row by checkboxI am trying to use a checkbox to delete several rows from a table created by Avascript with input information. However I do not know how to make it recognize the td to can perform the delete…