Jump to content

need help with var's


achesnpains

Recommended Posts

Ok so I've watch a ton of tutorials, read a few books asked a whole bunch of questions and still can't find a solution. Here is my problem,

I have this form here : http://jemtechnv.com/beta/finish_ticket.php  if you play with the form you will see that entering input in the Qty, and Price boxes will populate the Ext box along with sales tax and material cost and Material boxes, and input in the rate and hours box will populate the subtotal and labor boxes now here is my problem. I need to auto populate the total hours box by from the sum of the hours column and I also need to sum up the material and labor boxes and populate that total in the grand total box, sounds easy huh? you would think but here is my code that I use to calculate my sales tax :

function tax(){
		var materialcost = document.getElementById( 'materialcost' ).value;
		var shipping = document.getElementById( 'shipping' ).value;
		var salestax = Math.round(((materialcost / 100) * 8.1)*100)/100;
		var materialtotal = (materialcost * 1) + (salestax * 1) + (shipping * 1);
				
		document.getElementById( 'materialcost' ).value = materialcost; 
		document.getElementById( 'salestax' ).value = salestax;
		document.getElementById( 'shipping' ).value = shipping;
		document.getElementById( 'materialtotal' ).value = materialtotal;
		
		
  
	}

this works fine but when I try to use the materialtotal in another function to total up the materialtotal and labortotals for the grand total it causes the browser to lock up. Can someone tell me how I can get my grand total without making the script too complicated? Thanks!

Link to comment
https://forums.phpfreaks.com/topic/278461-need-help-with-vars/
Share on other sites

I've tried that and it locks up the browser. Any 2nd reference to the materialtotal field immediately locks up the browser when the script loads, it's almost as if it's stuck in an indefinite loop and causes the browser to stick at that point. If I remove the 2nd reference to materialtotal of the 2nd function the browser doesn't lock up but then I don't get the desired result!

Link to comment
https://forums.phpfreaks.com/topic/278461-need-help-with-vars/#findComment-1432828
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.