Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
6answers
128 views

How do I delete newlines ('\n', 0x0A) from non-empty lines using tr(1)?

I have a file named file1 with following content: The answer t o your question A conclusive a nswer isn’t al ways possible. When in doubt, ask pe ople to cite their so urces, or to explain Even ...
4
votes
2answers
75 views

is there a way to use tr/// (or equivalent) in java?

I would like to know if there is an equivalent to tr/// (as used in Perl) in Java. For example, if I wanted to replace all "s"s with "p"s in "mississippi" and vice versa, I could, in Perl, write ...
4
votes
3answers
193 views

To hook or not to hook - git

Our bespoke IDE outputs XML files with an encoding that makes them look like binary files. Diffs and merges of these files fail. We can create ASCII versions of these files with the tr command. I ...
3
votes
2answers
71 views

Finding punctuation and counting the number of each from the Unix Command line

I want find all of the punctuation marks used my .txt file and give a count of the number of occurrences of each one. How would I go about doing this?? I am new at this but I am trying to learn! This ...
2
votes
2answers
55 views

jQuery - Focus out on TR

Okay, so I'm making a plugin to allow inline editing of tables in my website, going great so far, I've got most of it done, but I can't seem to get Focusing out of the table right. So if someone is ...
2
votes
3answers
60 views

Html table/tr height

I am trying to fix height for HTML table row. Below is the code I am using : <div data-role="page"> <div class="pageTitle"> <h1>Products</h1> </div> ...
2
votes
5answers
32 views

Highliting a row in jQuery with specific content in a td

So far i can get my code to highlite the specific td, but even better would be to highlite the entire row. Does anyone know how to do this? var mySearch = 'No'; $('table tbody tr td:contains("' + ...
2
votes
1answer
368 views

Rounded corners on a table row

I want to add rounded corners with a border to a table row, each table row will have his seperate box with rounded corners with the td in the middle, anyhelp of the quickest and easiest way to achieve ...
1
vote
1answer
24 views

Concordance of text

I have been reading the cookbook for Linux to get a hang of it. I am fairly new to it. I cam across a topic called Concordance of text. Now I understand what it is, but I am not able to get a ...
1
vote
1answer
32 views

rowIndex is returning -1

I am using greasemonkey script and have updating the table using following code. I have attached the image of the table. But when I click on the delete , rowIndex returns -1 for all the rows. I am not ...
1
vote
2answers
33 views

How to Display hidden <tr> closest to selected radiobutton's <tr>

I have 3 tables on a page. Each of them contain two table rows. The first holds a RadioButton. The second is set to display: none. I need to second to display when the RadioButton in that ...
1
vote
4answers
52 views

Add another element using GetElementById?

Let's say that this' an HTML code: <tr> <td>Wusool</td> <td id="yasel"> 15:12 </td> </tr> and I want to change it into this html code: ...
1
vote
1answer
69 views

tr '[z-a]' '[a-z]' yields error message

I want to emulate rev command (on alphabet) with the tr command So I did this echo abcdefghijklmnopqrstuvxyz | tr '[z-a]' '[a-z]' That gives me tr: range-endpoints of `z-a' are in reverse ...
1
vote
2answers
90 views

jQuery next() td across table rows

I have designed a custom calendar using html and jQuery. I want to highlight a range of k days (say 2 days) onhover on the start date. Available dates in my calendar are td of class 'available'. This ...
1
vote
2answers
67 views

Jquery navigate to parent <tr>. Issues with using parent() or closest() selectors

I am not able to achieve something that seems so simple. Not sure where I am going wrong. Please advise. Goal is to highlight a table row is the checkbox corresponding to it is selected. I have ...
1
vote
2answers
100 views

How do I change the background color of the <tr> that contains a certain link?

I want to change the background color of an "tr" element, that contains a given link. My Snippet: var color1 = "red"; var targetForum = $("tr a[href*='showforum=28']"); targetForum.each ( function ...
1
vote
5answers
112 views

Removing trailing / starting newlines with sed, awk, tr, and friends

I would like to remove all of the empty lines from a file, but only when they are at the end/start of a file (that is, if there are no non-empty lines before them, at the start; and if there are no ...
1
vote
2answers
122 views

Jquery conflict tr:hover and .addclass in firefox

The .addClass is not working for me in Firefox, it only works if i take off the "background:#f2f2f2;" from the CSS or "class="hovering" out of the tag. Otherwise this works in all browsers, chrome, ...
1
vote
2answers
78 views

is there any reason you can't put a border around a <tr> in an html table using css

i have a table and i have a tr with a class set to "underRow". In css, i have: .underRow { border-bottom-color: #7a26b9; border-bottom-style: solid; border-bottom-width: 1px; } but the row ...
1
vote
3answers
79 views

html table td's and tr's disappearing

I'm going though something quite weird. I was working on a chat system with the rows and stuff based on tables, but the formatting kept messing up. I wondered why until I looked at the part of the ...
1
vote
3answers
62 views

Shift letter position in a word

I want a command/function, preferably bash, that takes a word/string and a number and shifts the letter positions in the word by that number, rotating the overflow back to the beginning. e.g. with ...
1
vote
5answers
89 views

<div> into a <tr>: is it correct?

Is this code correct? <table> <tr> <td>...</td> </tr> <tr> <div>...</div> </tr> <tr> ...
1
vote
3answers
77 views

horizontally align table rows

Is it possible to horizontally align table rows? You: why do you start a new row if you want the cells to align horizontally? Because I can't control the table structure. (I really can't!) I used: ...
1
vote
5answers
144 views

how do i verify presence of special characters in a bash password generator

Supposed to be a simple bash script, but turned into a monster. This is the 5th try. You don't even want to see the 30 line monstrosity that was attempt #4.. :) Here's what I want to do: Script ...
1
vote
1answer
213 views

jquery closest tr not getting selected

using jquery 1.6.1 When the check box gets checked or unchecked, i want to change the background color of the row. My closest tr is not getting selected here. I have a working code that i am changing ...
1
vote
2answers
185 views

How do I sort my table and keep alternating background colors while sorting using jquery?

I am having a problem with my table rows background colors once I start sorting columns. When my document loads the code is runs like this: $('tbody tr:even').css('background-color','#F1F1F1'); ...
0
votes
2answers
35 views

Javascript to show next table row if current row is poulated

I have an HTML table which is poulated by a user. The first colum in the row has a drop down box where they select an option generated by a mysql database. This is for an orders table and the order ...
0
votes
6answers
38 views

Apply css style to tr

Good afternoon in my timezone. I have a table with four tr and each tr has four td. I want to apply different width's to each td. For example I want the following: <tr> <td ...
0
votes
3answers
58 views

Force TR height in HTML

I am trying to force a table row that only contains images to be the images' height, but the page always displays a few extra pixels tall. See http://www.slamgmt.com/newsite/index.php Also ...
0
votes
2answers
58 views

Absolute Positioning TR & TD Elements

i am trying to absolute position a ASP.NET Datalist which inside a table with TR & TD elements - i have the TR displaying horizontally - applying the absolute positioning just shows the last TD ...
0
votes
3answers
130 views

unix tr find and replace

This is the command I'm using on a standard web page I wget from online. tr '<' '\n<' < index.html however it giving me newlines, but not adding the back carrot in again. e.g. echo ...
0
votes
2answers
48 views

Html: Stretch a span across a td

I think an image best describes this: JS FIDDLE HERE: http://jsfiddle.net/fp2Ak/ What I want to do, is for those lines to actually touch. Each one is a span with a number in. within a td. Note: ...
0
votes
2answers
66 views

Move tr by index to a new position

I have a table that has a fixed layout of rows. Each row has unique identifier. When the data is returned from the database it has a different order for the rows in that table. The returned data has ...
0
votes
1answer
94 views

lowercase or rename all files in a directory on Mac OS X

After putting hours into this, I give up, and am asking for help. This has been answered perfectly in a previous SO question here: How do I rename all files to lowercase? The trouble is, it does not ...
0
votes
0answers
79 views

php performance of foreach loop when creating table with 2 cells per row in the view html

I want to construct a table with two td's per row . and each td will contain a list of checkboxes , which will be again two checkboxes per row , and I have to display this inside a popup. For this I ...
0
votes
3answers
114 views

CSS tr background not working IE7

The tr background property doesn't seem to work in IE7. I want to make the bgcolor of the row alternating and then have it a different color when the mouse is on the row. So I can't use table tbody ...
0
votes
1answer
129 views

Prototype.js Element.update() throws error on IE9

My code looks like: var node = parent.insertRow(before); node = $(node); node.update('<td>Hello</td><td>Hello</td><td>Hello</td>'); It works on IE6, IE7, IE8, ...
0
votes
1answer
47 views

Rhodes application - How to navigate screen on table row touch?

I want to perform navigate to other screen when I touch a table row. To do so I did the following : <table> <tr><a href="<%= url_for :controller => :Products ...
0
votes
3answers
60 views

tr command not working

Hello every one here I have a problem. I have a file in which there is some data like this mango apple orange grapes When I run the command tr '\n' ' ' < file.txt It works fine; the ...
0
votes
1answer
165 views

Trying to 'grep' links from downloaded html pages in bash shell environment without cut, sed, tr commands (only e/grep)

In Linux shell, I am trying to return links to JPG files from the downloaded HTML script file. So far I only got to this point: grep 'http://[:print:]*.jpg' 'www_page.html' I don't want to use ...
0
votes
2answers
37 views

Parsing and applying function on parsed values in bash scripting

I have the following in my script : function processurl { } some_text%%%url1%%%url2%%%url3%%% with number of urls varying between 0 to any finite number (in case of 0 the string is some_text%%%) ...
0
votes
1answer
144 views

Table Zebra, styling TR and COL in IE9

I was going to post nice bitmaps of desired and received bahavior but I'm not allowed to post images since I am a new user, so view the following link in Google Chrome, then IE9 to see what I am ...
0
votes
2answers
106 views

Focus on Table row TR for accessiblity

I have a requirement to implement accessibility on table rows. The application should ideally be div based and rows should've been li's, but it is an old application and redesigning is not an option. ...
0
votes
2answers
91 views

How to make a table tr into a link?

Here is my current solution: <tr onclick="window.location = '/info/{{ match.login.id }}/'"> <td>{% if match.image %}<img src="{{ match.image|crop:'64x64' }}" alt="Match Avatar" ...
0
votes
3answers
88 views

CSS - Space between tr's, with tr's as contiguous blocks

I want to format a table to show as rows, with each row being a contiguous box, and with space between the rows. Example: <table> ...
0
votes
2answers
134 views

How to control tr height of table in CSS

bros, I try to reduce the white space between each tr in a table. I have set "table id='recTable' cellspacing=\"0\" cellpadding=\"0\"", that means there is no space between each tr(comfirmed). So ...
0
votes
0answers
19 views

TR char problem at Android TextView

How can I use TR chars at TextView of an Android widget? I tried and some special chars makes problem at some places and seen normal at an other place. like G***???***kyüzü bu gün parçalı bulutlu bu ...
0
votes
2answers
41 views

jquery: need help using selector as method

I am trying to select <tr> elements from tables which contain subtables so as to retrieve <tr> elements from the tables only and not the subtables, hence why I cannot use the find() ...
0
votes
1answer
97 views

Jquery table tr:odd problem

I have this js code: $(".main-vervolg .right .bottom .panes table.grey tbody tr:odd").css("background-color", "#f8f8f8"); And it is working fine but when i have 2 separated tables with the class ...
0
votes
2answers
56 views

How do loop through a table to select a specific table cell on each row using jquery?

I am trying to place text in the 6th table cell of each row of my table. But all I am getting is the first row selected: $('tbody tr:even td:eq(5)').each(function(){ ...

1 2