Posts Tagged ‘Javascript’
Friday, August 14th, 2009
These days I’m working a lot with other people’s code, I just discovered that a selectbox whose currently selected option I want to retrieve the inner html from; has the same id as a table column higher up in the document. Great…... Read More
Tags: css, html, Javascript, prototype
Posted in Javascript | No Comments »
Saturday, August 8th, 2009
I just implemented fetching and displaying one’s Twitter feed in my feed reader (that I will be inviting people to use when/if I ever feel like it’s finished).... Read More
Tags: Javascript, jquery, twitter
Posted in Javascript, jQuery | No Comments »
Saturday, July 11th, 2009
The other day I was searching for some Javascript that could output objects and stuff in a similar fashion to PHP’s print_r function, with indentation and all. In the end I ended up combining two different scripts, a simple one that focuses mostly on the presentation, and one that focuses more on the true recursiveness that is required.... Read More
Tags: debug, debugging, Javascript, jquery, print_r
Posted in Javascript, jQuery | No Comments »
Saturday, April 25th, 2009
I’ve created a demo demonstrating the feasibility earlier, the first one using jQuery and jQuery UI actually, although at the end I never used jQuery since Inviclub is created with Symphony and Symphony is using Prototype.... Read More
Tags: draggable, droppable, Javascript, json, prototype, scriptaculous
Posted in Javascript | No Comments »
Monday, March 9th, 2009
The other day I wanted to try out jQuery Galleria, it didn’t work out of the box with jQuery 1.3.2. Galleria is using the old style @ syntax which doesn’t work anymore. You basically have to go through the whole plugin and replace lines like this:... Read More
Tags: galleria, Javascript, jquery, MODx, PHP
Posted in CMS, MODx, PHP | No Comments »
Saturday, December 20th, 2008
I just found a great post on how to debug Javascript in IE.... Read More
Tags: debugging, ie, Javascript, visual web developer
Posted in Javascript | No Comments »
Sunday, December 14th, 2008
So my earlier drag and resize combination with jQuery never worked out OK due to the fact that Prototype and jQuery are not getting along. Collections of DOM elements won’t work in jQuery which pretty much makes the whole proposition useless.... Read More
Tags: drag, draggable, Javascript, prototype, resizable, resize, scriptaculous
Posted in Javascript | No Comments »
Thursday, November 27th, 2008
What a day yesterday was. Supposedly if you do the whole jQuery no conflict stuff it will be able to play ball with Protoype.js, not true. I wanted to retrieve the value of the currently selected option in a select box with jQuery but for some reason all that monkey patching going on in Prototype just tripped it up.... Read More
Tags: Javascript, jquery, lightwindow, prototype js, symfony
Posted in Javascript, jQuery | No Comments »
Sunday, November 23rd, 2008
Because of all the recent problems with Flash uploading I just opted for uploading in an IFRAME. The IFRAME will reload itself when the upload is finished. When this happens it will trigger a jQuery JavaScript that will update a DIV in the document that contains the frame. It’s really easy, the below example is from a Symfony project so we can’t use the $ sign because it will conflict with the prototype library.... Read More
Tags: Javascript, jquery, symfony, upload
Posted in Javascript, jQuery | No Comments »
Thursday, November 20th, 2008
The other day I needed something to check which version of flash player a user has. It’s all connected to the new problems with uploading that were introduced in Flash player version 10. For some reason the solution we are using needs to know if the player is of version 10 or lower in order to act accordingly. For some reason this will solve a problem with IE6 having a player version lower than 10, don’t ask me why, I’m not the one implementing this. My only mission was to detect version.... Read More
Tags: flash, Javascript
Posted in Javascript | No Comments »