Javascript For Programmers Blog Posts

Highcharts both OX and OY logarithmic axis

Today’s tip is about Highcharts. Few months ago, we have talk about Highstock JavaScript library. Well, Highcharts is pretty much the same, since both are developed by Highsoft Solutions AS. There are both pure JavaScript libraries for creating int...
by Java Behind Obvious on Mar 24, 2013

Working with JavaScript cookies

Just a few methods for handling cookies with JavaScript: function setCookie(c_name,value,exdays) {     var exdate=new Date();     exdate.setDate(exdate.getDate() + exdays);     var c_value=escape(value) +...
by Java Behind Obvious on Dec 18, 2012

Introducing Highstock JavaScript library

     If you ever need to create dynamic interactive charts for you’re projects and you don’t know exactly how to do it or what to use, then Highstock may be a good solution for you. Highstock is a charting library written in p...
by Java Behind Obvious on Aug 26, 2012

Accessing the <span> tag content from JavaScript

Hi again ! For a recent project, I had to use the power of Javascript to obtain the <span> tag content. The first thing that came to my mind was by using the Javascript innerText property, but this was a bad idea. It seems that IE, Crome and Op...
by Java Behind Obvious on May 5, 2012
Close