highlight

How to highlight HTML text without wrapping it with tags?

Is it possible to highlight text in an HTML document using without wrapping it with <span> or any other tag for that matter? For example, in the HTML code <p>The quick fox</p> I would like to highlight quick but without adding a DOM element around it. Adding a DOM element to a parent element is fine. Thanks! ...

Highlighting specific values in R plot

In R (statistical computing environment) I would like on a generic plot, with time on the x-axis, highlight some specific years. How can I bestly do this? My idea is for example a light yellow bar for the highlighted years, behind the plot of course. The plot code I have now: pdf("temperature_imfs_big_interm5.pdf", width=6, height=8);...

Highlight line in Zend Studio 7

Hi, In ZS 5 you can highlight a line by clicking on the line number in red. This persists when you move the cursor to another line. I use this as a bookmark. Is it possible to highlight a line in this manner in ZS 7? Thanks. ...

Highlight PART of text of UITextView

Hi all together, I'm quite new to Iphone programming, and already did some search on the internet trying to get some usefull help. What I would like to do is, if my detailed view gets called I would like to highlight just a Part of the text of the UITextView Element. Lets say the text within the UITextView is: blatextbla Then I would ...

using jquery highlight effect

I would like to use jquery highlight effect to highlight a paragraph with background orange, then when completed, turn on orange background permanently. In this code the second task does not work. myparagrah = $("#thisParagraph"); turnOrangeOnWarning("This is a warning!"); function turnOrangeOnWarning(t) { myparagrah.text...

Select a complete table with javascript (to be copied to clipboard)

Hello everyone, I was wondering if anybody knows how to select using js the complete table, so that the user can right-click on the selection, copy it to the clipboard and then paste it on excel. If you select the table manually, the process works perfectly. But sometimes, if the table height is a few times larger than the screen, sele...

Syntax highlight problem in Scintillua 2.01-1

There is syntax highlight for HTML and PHP in Scintilla/SciTE 2.01. But there's isn't syntax highlight for HTML and PHP (all others work) in Scintillua and Scite-st (Mitschell's Scite with snippets). anyone having this problems? ...

how to highlight matched keywords in a listview?

Hi. I have a search button and I want the search results to be highlighted. For example, I want to search a topic and the results will be shown in a listview. I'm using ASP and vb.net and the result of query is based on the records in my database which is MYSQL. My question is how can I highlight matched keywords in a listview control? T...

jquery highlight row based on specific column's value

i know there are many tangential posts on this topic (I've read them all) but i can't seem to put it all together. I would like to highlight all rows whose 2nd column contains the '-' character. in case its relevant: 1) the second column's header (th) is "Due In" 2) the values in the second column are strings 3) there isn't a specific...

jquery datepicker inputdate highlight

Hi there, I am using latest version of 'Jquery-ui' datepicker. i am trying to make the datepicker readonly(no more selections) with a given input date highlighted. i did not find any way to make it readonly but i was able to highlight a given date to some extent (though today's date appears to be more highlighted). my code looks: $(...

How to highlight the background color of a row when tick the checkbox?

Hi there. I have a list of checked items. I used the simple_list_item_multiple_choice.xml layout from android from the list. My requirement for this list is: - When I check the checkbox of an item, the background color of that row will change. (For e.g. black background to green) - Then when I uncheck the checkbox, the background col...

Qt: How to show icon when item selected

I have a QListWidget containing items which have icons and when the items are selected the icon is just highlighted out. Is there a way to prevent this? I can't use stylesheets because it's for an embedded application and including them takes up too much space. thanks ...

How to prevent an icon being highlighted?

I have a listwidget with items which have icons. When the item is selected both the text and the icon are highlighted. My problem is that when the icon is highlighted it just goes entirely black because I'm using only two colours. Is there a way to prevent the icon from being selected? ...

Select everything in a pre box when you click on it?

The select() method only seems to work with textareas and input spaces, and I don't know javascript very well, so I'm not coming up with any solutions. Does anyone know how to highlight everything in a pre box when you click on it? What I'm trying to do is make it so a visitor can easily highlight everything in the pre so they can then...

Wrap some specified words with span in jQuery?

Hello I'd like to know the most convenient way to wrap some specified words with span-tags. Example: I have a word, which is dog. Here's the original text: I have a dog, do you have a dog? And output should be like this: I have a <span class="highlight">dog</span>, do you have a <span class="highlight">dog</span>? Simple problem ...

iPhone app copy and highlighting

After realizing that my question was somewhat vague and to business like. I am reposting with further detail as to what my app does and what I am using. I have an app which is how to draw a comic book /manual. I’m using a webview to load an Html page into the main view. On top of the main view I have a UIBar with 2 buttons, one for t...

Changing the highlight color when selecting text in an HTML text input.

Hey folks! I've been looking for this throughout the web and can't even find anyone else even asking this, let alone a solution... Is there a way to change the color of the highlight area within a a text input when text is selected? Not the highlight border or the background, but the portion that appears around the text when you have t...

how to make appear and disappear div background color in jquery?

Hi all, I am trying make the background color of a div appear and then disappear like a flash coming and going but without nay success till now. On the click of a div, I am trying to give a flash effect to another div's background color. So far, my jquery knowledge have come to the following code: $("div.first_div").click(fun...

Highlighting PDFs programatically in .net - are there any APIs or Libraries to generate offset file or is there a better method?

I need to programatically highlight PDFs on the fly, preferrably using the highlight file method. Are there any .net programming libraries to generate a xml highlight offsets file for a pdf? Doesnt have to be open source or free. I tried converting PDFBox to a .net DLL using IKVM and it did not work correctly. Im not terribly excit...

How to use PDFBox 1.0 in .net / C# environment using IKVM

Id like to use PDFBox to generate PDF highlight files in my .net project. PDFBox states that it can be used in .net via IKVM http://www.pdfbox.org/userguide/dot_net.html BUT running ikvmc (latest version) to generate the DLLs on PDFBOX.1.0.0.jar generates a whole lot of NoClassDefFound warnings. How should I fix this, and what other ...