Category Archives: Javascript Development

Javascript is quickly becoming a strong competitor next to flash technology due to advances in browser technology such as html5 and javascript engine optimization.

Simple Online Rich Text Editor

Fancy Editors have been online for quite some time now. There are some popular ones with lots of features like TinyMCE and CKEditor. These two competing brands have word like interfaces and are both open source. But how do these … Continue reading

Posted in Javascript Development, Web Development | 1 Comment

Javascript Character Classes

I have put together the beginnings of a javascript character class script. The idea was to create a testing platform and the build the character class handler at the same time. Starting off as a need to build a scanner/parser … Continue reading

Posted in Javascript Development | Tagged , , , , , , , , , | Leave a comment

Javascript Object Oriented Ideas

Good article on Javascript Object Oriented Ideas If you are looking to do some “strange” things with javascript Object Oriented programming, then check out: this article. There is a lot of information on creating things like static functions, singletons, private/public … Continue reading

Posted in Javascript Development, Web Development | Tagged , , , , , , | 1 Comment

Simple Javascript Error Handler

Simple Javascript Error Handler If you have ever wanted a simple error handler utility for javascript that outputs error s on screen in a reasonable manner, check out this little script.

Posted in Javascript Development, Web Development | Tagged , , , , | 1 Comment

Javascript Simple Closure Pattern

Simple Closure Pattern There has been lots of discussion about closures over the years especially since the success of popular frameworks such as JQuery and other such. But how are such patterns created and what are some interesting things that … Continue reading

Posted in Javascript Development, Web Development | Tagged , , | Leave a comment

Bing Maps Static Maps API

Before Getting Started make sure to obtain an API key from: http://msdn.microsoft.com/en-us/library/ff428642.aspx If you wished you could retreive Bing Maps static images for a specific location, your wait is over. I am not sure when the Bing Maps Static API … Continue reading

Posted in Javascript Development, Web Development | Tagged , , , | 2 Comments

Using Jquery in an iframe

Although it may not seem like an easy task at first, it is quite possible to use jquery inside of an iframe. The first trick involves loading jquery inside the iframe code itself. Html Containing Iframe

Posted in Html, Javascript Development, Web Development | Tagged , , | Leave a comment

Creating Javascript Widgets

Creating widgets in javascript is not a new idea and is becomming more or less of a wide spread technology thanks to well used web aps like facebook, myspace and even google apps. A widget is basically a simple graphical … Continue reading

Posted in Javascript Development | Leave a comment

Javascript css float attribute

FYI for those of you trying to perform css float style updates programmatically, you have a little hurdle in order to apply this style correctly. Like the other style that have javascript counterparts through the use of element.style, the float … Continue reading

Posted in Javascript Development | Leave a comment

Remoting Technologies for javascript

There are a few remoting technologies available for javascript, and with the html5 spec will come greater possibilities. The 4 most popular technologies I can think of other than proprietary formats would be xml, json, urlencoded, yaml.

Posted in Javascript Development, Web Development | Leave a comment