How to submit the below form using Javascript?
-
Hi All, I would like to submit the below URL in a interval of every one minute. http://positions.vistracks.com/facts/factsformparser?payload=FACT,12345,-88.04,42.0,2009-12-15T00:00:00Z, SensibleSensor-Q42,,45.5,184,,temperature=18.5,Doorstate=open This URL will contain with a PostFact button this should submit for every one minute, How to submit this using javascript? Thanks Kanna
-
Hi All, I would like to submit the below URL in a interval of every one minute. http://positions.vistracks.com/facts/factsformparser?payload=FACT,12345,-88.04,42.0,2009-12-15T00:00:00Z, SensibleSensor-Q42,,45.5,184,,temperature=18.5,Doorstate=open This URL will contain with a PostFact button this should submit for every one minute, How to submit this using javascript? Thanks Kanna
Hi Kanna, you may use setInterval function from JavaScript. This is a start point!
-
Hi All, I would like to submit the below URL in a interval of every one minute. http://positions.vistracks.com/facts/factsformparser?payload=FACT,12345,-88.04,42.0,2009-12-15T00:00:00Z, SensibleSensor-Q42,,45.5,184,,temperature=18.5,Doorstate=open This URL will contain with a PostFact button this should submit for every one minute, How to submit this using javascript? Thanks Kanna
With help of setTimeout('yourFunction',1000); function yourFunction{ //your logic here }
Atul Kumar