Tagged Questions

5
votes
6answers
2k views

SED: How can I replace a newline (\n)?

I unsuccesfully tried: sed 's#/\n# #g' file sed 's#^$# #g' file How to fix it?
5
votes
9answers
2k views

jQuery .toggle() not working with TRs in IE

I am using jQuery's toggle() to show/hide table rows. It works fine in FireFox but does not work in IE 8. show()/hide() work fine though. slideToggle() does not work in IE either - …
4
votes
6answers
2k views

Space between two rows in a table?

Is this possible via CSS? I'm trying tr.classname {border-spacing:5em} to no avail. Maybe I'm doing something wrong ?
2
votes
2answers
157 views

What XPath selects odd TRs from a table, starting with the third?

I have a table: <table> <tr><td>1</td></tr> <tr><td>2</td></tr> <tr><td>3</td></tr> <tr><td& …
0
votes
2answers
45 views

How to set 50% height for table cells for WebKit (Chrome, Safari)

Look at this code: <html> <body> <table border="1px"> <tr> <th align="center" width="70px">Name</th> <th align="center" width …
0
votes
1answer
32 views

What’s going on with tr(anslate) here?

in applescript if i do: do shell script "echo \"G:\\CRE\\MV Studios\\Exhibition Projects\"|tr \"\\\\\" \"/\"" I'd expect all my backslashes to come back forward slashes. To make …
0
votes
7answers
151 views

BASH: Find highest numbered filename in a directory where names start with digits (ls, sed)

I have a directory with files that look like this: 001_something.php 002_something_else.php 004_xyz.php 005_do_good_to_others.php I ultimately want to create a new, empt …
0
votes
3answers
64 views

What is the order to style a div inside of tables?

#div that holds table, table tr td.class of td now what goes here to style a div class I put inside of the td class?
0
votes
1answer
118 views

jquery adding to the last tr of the first table

Hello, I have a table structure like the one shown below: <table id="result"> <tr> <td id="groupx"> <table> <tr> <td>Data</td> …
0
votes
2answers
177 views

How to specify the bottom border of a <tr> ?

I tried : .bb ( border-bottom:1px; ) <tr class="bb"> But no effect at all.
0
votes
2answers
273 views

jQuery fadeTo effect applied to <tr>

I want to add the fadeTo effect to a tr tag using jQuery. This should be possible, right? Here's my code: if ($) { $(document).ready(function() { $("tr[id$='_trPending …
0
votes
4answers
376 views

CSS: how do I create a gap between rows in a table?

Meaning making the resultant table look less like this: [===ROW===] [===ROW===] [===ROW===] [===ROW===] ... and more like this: [===ROW===] [===ROW===] [===ROW===] [===ROW …
-4
votes
4answers
69 views

Width of <table> and <tr>? [closed]

What's the part between <table> and <tr>? Can see it if we set different width on <table> and <tr>