DCSIMG
HTML - Client-Side with Basil Goldman

Browse by Tags

21 August 2008
jQuery.create() - jQuery plugin to create HTML elements
jQuery.create() - it's a featured plugin for jQuery JavaScript Library. You can create any types of HTML elements, set attributes and context or HTML using jQuery.create(). See below the HTML example declaration. I think it make easy and fast your programming in JavaScript. jQuery.create = function... Read More...
20 August 2008
JavaScript Repeater Control (dataRepeater) - from jQuery.Presenter.1.0.8 - UIControls Library
In this post, I want to present a new JavaScript Repeater Control from my latest UIControls Library jQuery.Presenter 1.0.8. This control like (ASP.NET Repeater Control) created using jQuery Library 1.2.3 and support for later versions. It's a free open source script... Enjoy... /* * jQuery.Presenter... Read More...
25 February 2008
How to set absolutePath using CSS expression for AlphaImageLoader (IE) *.png files
TIP : "Set absolutePath using CSS expression for AlphaImageLoader (IE) *.png files". So what you can do to write absolute path in CSS files not like "HARD CODE" Here attached below examples CSS syntax. Before: _filter : progid:DXImageTransform.Microsoft.AlphaImageLoader(src='... Read More...
18 February 2008
JavaScript String.format & StringBuilder
// String.Format String.format = function() { var s = arguments[0]; for (var i = 0;i<arguments.length-1;i++){ var reg = new RegExp( "\\{" +i+ "\\}" , "gm" ); s = s.replace(reg,arguments[i+1]); } return s; } String.prototype.format = function() { var s = this ; for (var... Read More...