Giter Site home page Giter Site logo

Comments (5)

mistic100 avatar mistic100 commented on July 1, 2024

I'm didn't write this part of the code, see if @rinogo has an idea

from jquery-highlighttextarea.

alfadormx avatar alfadormx commented on July 1, 2024

Hi,

Further research seems to reveal that JQuery's scrollLeft and scrollTop functions fallback into JavaScripts element.scrollLeft function when you don't send a value as parameter.

Having said this and following my previous example doing:

document.getElementById('e5').scrollLeft;
// and
document.getElementById('e5').scrollLeft = 50;

In a Chrome + Firefox console it will move the Input window as expected.
The same behavior is not supported by IE. The return value is always 0 and when set you don't see any change in scroll.

There must be another way to calculate the 'scroll' position of an input in IE.

Any help by the community is greatly appreciated.

from jquery-highlighttextarea.

rinogo avatar rinogo commented on July 1, 2024

Hello! Unfortunately, I can't dive in right now and find a workaround. For my particular application, supporting IE wasn't a top priority, given that this code was to be used on essentially an intranet site. By the way, have you tried other versions of IE? You might find a version for which it works (I believe I did do some IE testing), and either 1) only support from that version on or 2) at least know where to start looking for alternatives (based on the version, changelogs, etc.).

Sorry I can't be of more assistance!

from jquery-highlighttextarea.

rinogo avatar rinogo commented on July 1, 2024

By the way, I looked into it a bit more - you should check out my merge request (#22), particularly the last few comments about IE8/IE9 compatibility.

from jquery-highlighttextarea.

alfadormx avatar alfadormx commented on July 1, 2024

Hi, thanks for your answers.
Well, for the time being I have discovered that the scrollLeft property for inputs works in IE<9.

On the other hand. I have found a workaround to solve my problem.

What I do is actually use a textarea but I make it appear as an Input with the following inline styles:

<textarea id="demo1" cols="50" rows="1" style="white-space: nowrap; overflow: hidden;">Lorem ipsum dolor sit amet, vulputate molestie nec dui.</textarea>

then with a javascript code as follows:

$(document).ready(function() {
  $('#demo1').highlightTextarea({
    words: {
      color: '#FF0000',
      words: ['Lorem ipsum','vulputate']
    }
  });
});

I manage to get the following result (screenshot from IE11)

capture

I will continue my efforts to prove if there is no other solution. Otherwise I will remain with the one previously introduced.

Thanks!

from jquery-highlighttextarea.

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.