18 noiembrie 2012

Simple Links List - Rectangle Design

I wanted a link list for the upcoming JavaScript scripts (I will scan the internet for the best of them), so I wanted something catchy. (You will be soon able to acces JavaScript scripts selecting 'Scripts' from 'Categories' in the left side of the blog.

 Inspired by Windows 8, I guess, but it seems to me that had choose a bad color scheme. Changing it will be to much at this hour.

Scripts Menu

Links do not work yet. It's under construction.

  • Clock, Calendar and Timers
  • Calculator
    Text Effects
    Visual Scripts
    Development
    Form Scripts
    Frame Scripts
    Game Software
    Graph and Chart
    Image Effect
    Navigation Scripts
    Search Scripts
    Security Scripts
    Miscellaneous

16 noiembrie 2012

35+ Best jQuery Social bookmark plugins

As the title says, I've found a list of best jQuery plugins for social bookmarks. It will incredibly simplify your work with the list of social sharing buttons on your web site. And the best thing is that they are explained. Have a go:

35+ Best jQuery Social bookmark tutorials and bookmark plugins.

12 noiembrie 2012

Comparison of Javascript Syntax Highlighter

Running a blog, a site or a forum will eventual lead to code snippet highlighting. But which one is the best?

You have here a completely unfair comparison of Javascript syntax highlighter.

 JavaScript highlighters comparison.

11 noiembrie 2012

How to Create a Keyboard with CSS and jQuery

Cool tutorial on nettuts creating a virtual keyboard with CSS and jQuery.

It's pretty neat, and this is the simplest code you can have. You can adapt the code and style it as you like, and put it on your web site!

If you want more complex keyboards, with language support, you should google for. This is the actual first result found: JavaScript Graphical / Virtual Keyboard Interface. I believe it's worth taking a peek.

Actually, you will find a lot of virtual keyboards on the google, and most of them are based on list, each key being a list item. I sat and thought of another structure, but no way: lists are way easier to work with and easier to style. I then thought of divs, using, of course, jQuerry appendTo() function. So the divs will be dynamically loaded, and their content too. Easy.

And then came in my mind tables. So I did my own version (very simple) of virtual keyboard, check it here: Virtual Keyboard. It's not perfect, but for now, it's done, and that's what really matters.

6 noiembrie 2012

The Difference Between an Array and an Object

An array is a actually an object in JavaScript, and the same, an object might be indexed the same as an array. However, there are some things you want might know.

Discussion on stackoverflow.

Why using associative arrays is considered harmful, here.