Posts Tagged JavaScript

Binpress

The source-code marketplace
Binpress is a marketplace for source-code, where developers
can buy and sell source-code packages from each other.

Languages
PHP components
Ruby components
Python components
C# components
VB.NET components
Java components
JavaScript components
Other components

Helping buyers make a decision
Every package you publish has a dedicated landing page that is professionally designed and optimized for conversions. We use our expertise in design and user experience to help prospective buyers make a purchase decision.

Helping you sell your code
We invest heavily in several distribution channels including SEO and PPC campaigns, partnerships with affiliates and cross-site promotions.
We handle marketing for you and help you make the sale

via Binpress.

, , ,

No Comments

Javascript Pop Up / Lightbox – by Paul Engel

TopUp is an easy to use Javascript library for unobtrusively displaying images and webpages in a Web 2.0 approach of popups. The library is jQuery and jQuery UI driven in order to maintain cross-browser compatibility and compactness. TopUp offers the following advantages:

  • TopUp is absolutely free, also for commercial use (view the license)
  • A very easy setup process: only one(!) include and nothing more
  • Using TopUp presets keeps your HTML code 100% clean, no extra code needed whatsoever
  • The ability of displaying images, flash (from sites like Youtube, SWF and FLV files), movies (QuickTime, Windows Media and Realplayer), iframes, DOM elements and raw HTML
  • TopUp can be used along with Prototype (just include TopUp before Prototype)
  • TopUp is compressed with Yahoo! YUI Compressor to 47.6 KB (includes JS, HTML and CSS)
  • Usage of CSS sprites to reduce the amount of image requests to two per layout for faster loading
  • Cross-browser compatibility
  • Fancy layouts, animations and transitions
  • Auto-correction of size and position when required
  • The possibility to create groups
  • Support for AJAX requests
  • It’s open source: check out http://github.com/archan937/topup and enhance TopUp yourself!
  • And many more…

via The #1 Javascript Pop Up / Lightbox – Get TopUp – Home.

, ,

No Comments

Encoding / decoding UTF8 in javascript

Encoding / decoding UTF8 in javascript
From time to time it has somewhat annoyed me that UTF8 (today’s most common Unicode transport encoding, recommended by the IETF) conversion is not readily available in browser javascript. It really is, though, I realized today:

function encode_utf8( s )
{
  return unescape( encodeURIComponent( s ) );
}

function decode_utf8( s )
{
  return decodeURIComponent( escape( s ) );
}

Tested and working like a charm in these browsers:

Win32
  • Firefox 1.5.0.6
  • Firefox 1.5.0.4
  • Internet Explorer 6.0.2900.2180
  • Opera 9.0.8502

via ecmanaut: Encoding / decoding UTF8 in javascript.

No Comments

JavaScript

GREAT JavaScript

via JavaScript – ThemeForest.

,

No Comments