Below is the snapshot of the Client Side Web Technologies… Coooolll!!! permanent page. I update the permanent page monthly. JavaScript: … More
Tag: JavaScript
Flash, Silverlight, Linux Emulation… All in common is JavaScript
All of these are written in JavaScript Here is a Flash host that doesn’t require the flash plugin. http://mozilla.github.io/shumway/ A … More
I have yet to understand why people are afraid of SignalR.
Everything you need to know for SignalR for Web Pages is summarized at: http://www.asp.net/signalr/overview/guide-to-the-api/hubs-api-guide-javascript-client http://www.asp.net/signalr/overview/guide-to-the-api/hubs-api-guide-server Here is a maturing version … More
Speeding up large collapsible list binding with #AngularJS.
I have an editor that uses many collapsible panels generated through ngRepeat. The issue is that after a while screen … More
Top 3 items that #W3C should be embarased about when it comes to missing #HTML5 features.
I am using HTML5 as the umbrella term, that means that I am including CSS and JavaScript in this. 1. … More
Working with angular, and JavaScript in general.
When developing I really hate stacked functions that seem to go on forever. However there is a time and place … More
More Javascript Fun. Private variables.
So I have a class in C# that looks like this: public class Unit{ private int _Id; public Unit(int Id){ … More
Converting child arrays into the parent’s attributes and back, in JavaScript.
Lets assume you have a script object that looks basically like: var parent = { id: 0, name: ‘something’, children: … More
Javascript: Convert string variables to functions done easy.
var myVariable = “alert(‘Hello there!’);”; var runner= new Function(myVariable); runner(); //runner just ran
Some clarity for beginner Javascript developers. Because someone is always a beginner, unless the language is dead.
What does this mean? var MyObject = MyObject || {}; If you have your JavaScript built into several files, then this … More