jQuery on the fly URL shortener

后端 未结 6 1686
迷失自我
迷失自我 2020-12-02 17:38

I\'m looking for an on the fly URL shortener much like how tweetdeck works. I have found many jQuery and general javascript plugins that take a url and run it through a shor

6条回答
  •  不思量自难忘°
    2020-12-02 18:29

    I found your post while looking for something similar and eventually just wrote a jQuery plugin that provides (at least part of) what you're looking for.

    My jQuery Url Shortener on Bitbucket

    It's a very simple plugin; I didn't need to shorten the user's urls so I don't have any length checking or url testing before shortening it, though I am not averse to adding those types of features.

    Just thought you might find it useful.

    As for Recognising URLs in your textbox, I would suggest using a RegEx to match the url.

提交回复
热议问题