Giter Site home page Giter Site logo

Comments (7)

rlamorea avatar rlamorea commented on July 20, 2024 2

By using the css pointer-events property, you can make highlighted areas clickable, but all other areas of the textarea pass through.

Codepen example (based on @elalemanyo pen above)
http://codepen.io/anon/pen/NAomwG

from jquery-highlighttextarea.

mistic100 avatar mistic100 commented on July 20, 2024

Use listener delegation, see http://api.jquery.com/on/

$('.highlightTextarea').on('click', 'mark', function() {

});

of course you will have to do that after highlightTextarea has been init (other wise the .highlightTextarea wrapper does not exist)

from jquery-highlighttextarea.

selamhabibi avatar selamhabibi commented on July 20, 2024

Hi,
I do not get to run the "on click" event example. I have tried:

...
<textarea cols="50" rows="6">Lorem ipsum dolor sit amet.</textarea>

<script>

$('textarea').highlightTextarea({
  words: ['Lorem ipsum'],
});

if(jQuery().highlightTextarea) {
  console.log('Highlight Textarea ready....');
  $('.highlightTextarea').on('click', 'mark', function() {
    console.log('Highlight Textarea on click');
  });
}

</script>
...

I am grateful for any help ...

..Thanks

from jquery-highlighttextarea.

elalemanyo avatar elalemanyo commented on July 20, 2024

Hi,

Here is a simple demo: http://codepen.io/elalemanyo/pen/BNKebp

But I think that will be better if we can have some events. We need to change the z-index, otherwise we can not trigger the click event on the mark items.

from jquery-highlighttextarea.

selamhabibi avatar selamhabibi commented on July 20, 2024

Hi,

many thanks! The simple demo works for me after the page loaded. But when i click into the textarea and write some text I need to set the z-index to parent div again. Do you have a solution to solve this behavior.

Best regards

from jquery-highlighttextarea.

selamhabibi avatar selamhabibi commented on July 20, 2024

Thank you very much! That's exactly what I was looking for!

from jquery-highlighttextarea.

rlamorea avatar rlamorea commented on July 20, 2024

FWIW, I updated that pen to show how you get which mark (by index) and what text was clicked on (since I need to do that for my use case and figure it is generally useful)

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.