Giter VIP home page Giter VIP logo

Comments (7)

mathiasbynens avatar mathiasbynens commented on May 18, 2024

That’s how Chrome handles placeholder now. Safari has the same behavior. This has nothing to do with the plugin, as the plugin won’t do anything in case the browser natively supports placeholder.

from jquery-placeholder.

Gavrisimo avatar Gavrisimo commented on May 18, 2024

OMG you are fast :)

Could you provide some info about that please? I tried googling around but have failed.

So making webkit browser behave as others will require some workaround. I guess i will have to tell client that this is how webkit works now and "no" workaround is possible... ;D

from jquery-placeholder.

mathiasbynens avatar mathiasbynens commented on May 18, 2024

Well, a workaround is possible, but you’d have to remove the placeholder attribute and fake it yourself (possibly by using a modified version of this plugin).

Here’s the commit from two months ago: http://trac.webkit.org/changeset/101848 (This is for Chrome; Safari has had it for a while now.)

from jquery-placeholder.

Gavrisimo avatar Gavrisimo commented on May 18, 2024

Yeah, i know it's possible, but, like you said, that requires faking it... =D

Thanks Mathias! You are the best! Looking forward @ http://2012.front-trends.com =D

from jquery-placeholder.

mathiasbynens avatar mathiasbynens commented on May 18, 2024

Oh cool, you’ll be there too! Come say hi! :)

from jquery-placeholder.

bruha avatar bruha commented on May 18, 2024

You can add this to the end of file to fix Webkit:

// Fixing Webkit that not clearing input/textarea when get focus
$(function(){
if ($.browser.webkit) {
$('input, textarea').on('focus',function(){
if ( $(this).attr('placeholder') ) $(this).data('placeholder', $(this).attr('placeholder')).removeAttr('placeholder');
}).on('blur', function(){
if ( $(this).data('placeholder') ) $(this).attr('placeholder', $(this).data('placeholder')).removeData('placeholder');
});
}
});

from jquery-placeholder.

bmamlin avatar bmamlin commented on May 18, 2024

I see this as a bug in Firefox; Chrome & Safari handle placeholders properly. Clearing out the placeholder on focus removes the placeholder when it's most needed. Looking for a plugin that will address this Firefox bug...

from jquery-placeholder.

Related Issues (20)

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.