2013-08-31

I have written small web page that creates a graph with alarms distribution over 24 hour period, with alarm count being a variable that drives how many alarms will be send in this period.

After that I have written a small form that will have the alarm count variable in a input field

<input id="alarm_count_input" type="number"/>

Now I would like to be able to redraw the d3.js graph without page reload, taking alarm count that user submits with the form / input field.

JsFiddle : http://jsfiddle.net/L42LU/

Code :

Show more