Code Monkey home page Code Monkey logo

jquery-base64's Introduction

THIS PROJECT IS NO LONGER MAINTAINED. IT MOSTLY WORKS, BUT IF YOU RUN INTO ISSUES, CHECK OUT THE FORKS, PLEASE. OR FIX IT YOURSELF. CHEERS!


jquery-base64

Rather simple jQuery'fication of Nick Galbreath's base64 string encoder.

I didn't like having a global base64 variable around, that's all.

Usage

  • $.base64.encode( "this is a test" ) returns "dGhpcyBpcyBhIHRlc3Q="
  • $.base64.decode( "dGhpcyBpcyBhIHRlc3Q=" ) returns "this is a test"

Known issues

JSLint is complaining about the "unexpected use of '<<'/'|'". No idea, suggestions welcome.

Developers

Original code by Nick Galbreath. Port by Carlo Zottmann.

License

MIT license, just like the original.

jquery-base64's People

Contributors

czottmann avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

jquery-base64's Issues

Does not work with UTF chars

Does not work with UTF chars. Returns INVALID_CHARACTER_ERR: DOM Exception 5.

 function _getbyte(s, i) {
    var x = s.charCodeAt(i);
    if (x > 255) {
        throw "INVALID_CHARACTER_ERR: DOM Exception 5"
    }
    return x
}

I think that this should be mentioned somewhere.

JSON Data encoding

Got an error while encoding a json string.

var regDetails = JSON.stringify(data);
var json = $.base64.encode(regDetails);

WHERE data is a valid json data.

Uncaught INVALID_CHARACTER_ERR: DOM Exception 5

Accepting Non-Latin Characters?

Great plugin. One issue I found when trying to push non-latin characters -- if you run it as such

 $.base64.encode('पनामा');

It will return an error as such:

"INVALID_CHARACTER_ERR: DOM Exception 5"

It would be great to get this to work in all alphabets if at all possible!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.