
| home | AJAX (6) || C#.NET (5) || Coldfusion Development (16) || DHTML (14) || Flash Development (19) || jQuery (4) || MSSQL (2) || UNIX (10) |
| Archive for the 'DHTML' Category | ||
| 6.23.08 | Javascript print_r function | category: DHTML |
|
0 comm |
A quick javascript port of the ever-so-useful print_r() function in PHP. print_r([{function:‘testing’,arguments:[‘arg1′, ‘arg2′]}])
[0] => object
[function] => testing
[arguments] => object
[0] => arg1
[1] => arg2
|
|
| 6.18.08 | jQuery History Plugin | category: AJAX, DHTML, jQuery |
|
0 comm |
Looking for a mean and lean jquery plugin that is completely unobtrusive to the user and allows for tight integration into a jquery ajax driven site that needs to offer forward/back button support as well as state management? |
|
| 5.12.08 | Multiday Calendar Datepicker JQuery Plugin | category: DHTML, jQuery |
|
4 comm |
||
| 3.5.08 | Javascript Invalid Argument errors | category: AJAX, DHTML |
|
0 comm |
When you build an AJAX application that is served to IE6 and IE7 clients - you’ll probably run into the obscure “Invalid Argument” error: |
|
| 2.21.08 | Convert ADODB XML To JSON Through XSLT | category: AJAX, DHTML |
|
1 comm |
Hot on the heels of my ADOtoWDDX XSLT1.0 script, here’s a way to take the ADODB XML recordSet and parse the data into a JSON array of objects (again, this will work with XSLT 1.0): |
|
| 2.13.08 | Consolidate & Compress AJAX Javascript Files Through Coldfusion With JSMin | category: AJAX, Coldfusion Development, DHTML |
|
0 comm |
When building a large-scale AJAX application the size and number of supporting Javascript files grows quickly. There are many projects out there to aid in the optimized delivery of so many AJAX application assets which essentially consolidate several Javascript files into one file, “compress” via JSMin and finally compress via mod_deflate or simple gzip HTTP [...] |
|
| 7.11.07 | Javascript Recursive Object Copy, Deep Object Copy, Pass By Value | category: DHTML |
|
1 comm |
Use jQuery’s jQuery.extend( TRUE, target, object1, [objectN] ) “DEEP EXTEND” instead. var tt = {one:[{two:1}]};
var ttt = $.extend(true, {}, tt); alert(ttt.one[0].two == tt.one[0].two); // output true ttt.one[0].two = 2; alert(ttt.one[0].two == tt.one[0].two); // output false |
|
| 7.10.07 | DHTML Date Picker, Javascript Calendar v0.3 | category: DHTML |
|
8 comm |
I’ve seen my share of Dynamic HTML Date Pickers, Javascript Calendar controls, and the like. Each of which have a more horrifically ugly interface and are bloated with features. I found a need to create a simple calender piece so that a user could add a product to their cart when clicking on a specific [...] |
|
| 6.20.07 | DHTML Balloon Help, Tooltip, Hint That Auto Positions | category: DHTML |
|
0 comm |
UPDATED - 11/28/2007 Fixed issue with scrollable document window. It will not properly position in IE6.2800, IE7, and FF2 with loose.dtd. Will test with Safari shortly. UPDATED - 10/16/2007 fixed issue with not properly aligning the balloon vertically when on the “top” of the element it’s pointing at. This was an obvious problem when the balloon was pointing [...] |
|
| 4.3.07 | mod_proxy and internet explorer problems | category: DHTML, UNIX |
|
2 comm |
If you have seen this error appear in your Apache logs: |
|