0
votes
2answers
34 views
HTML layout: Title and Button
I'm to implement a fullscreen layout for a Web app according to custom specs. I've got most of it under control but there's one part I have some trouble with.
To economize on space in an otherwise …
0
votes
1answer
11 views
Can’t remove borders from tables in Word export
I'm having an issue when I export my html page to Word, I can't get rid of the borders on a table element.
<table cellspacing="0" cellpadding="0">
<tr>
<td …
2
votes
4answers
55 views
How to select all content between two of the same tags?
A similar question was asked before, but I'm looking for a jQuery solution using only the html below (ie. no classes or id attributes):
<h2>Foo</h2>
<p>asdf</p>
…
0
votes
4answers
64 views
Grab HTML code from web
I'm working on a project for fun but i want to grab just the html code from a website which I will later have to extract just the links.
I've been googling for a few minutes and I haven't found …
0
votes
3answers
53 views
Javascript file- is function in error? Need help!
I am trying to see if my JavaScript file's function is written correctly in order to display "Sunday, December 24, 2006". So here is the function:
function XmasDays(thisDate) {
var XMYear = …
0
votes
2answers
13 views
Service/App for viewing a Webpage as hex straight off the wire?
Are there any tools/websites/utilities for viewing a website in hex as it comes strait off the wire?
I'm getting some strange non-printing characters back from somebody else's C++ code and I want …
0
votes
4answers
57 views
HTML/CSS - Styling a large collection of hyperlinks?
I have a Master Links HTML page in use for my Intranet sites.
On the page are 67 distinct links which are grouped under 7 section headers.
Currently the links are organized via tables.
Is there a …
0
votes
1answer
21 views
Can I Toggle HyperLink and TextBox?
I have datacolumn in my gridview that has either a url, or plain text. How do I toggle a Hyperlink in the HTML?
This is what I have so far... which returns "View Link..." with or without a url :(
…
0
votes
4answers
34 views
How to produce HTML new line by putting metadata in Oracle table.
We have a CRM solution where all metadata stored in Oracle table (don't ask me why).
I am issuing an update statement but when get the data from database I see on front end '\n' as part of the text …
0
votes
1answer
17 views
Putting a div on a new line (problem caused by floating <ul> elements)
So I have a 3 unordered lists like so:
<ul class="menu">
<li class="heading">Title (Click To Download)</li>
<li><a title="Download sample.mp3" …
0
votes
1answer
25 views
In Google App Engines, how to display the HTML source of a page of a fetched URL in Python ?
Hello everybody!!!
On Google App Engine I found this code that is fetching a web page's URL:
from google.appengine.api import urlfetch
url = "http://www.google.com/"
result = urlfetch.fetch(url)
if …
0
votes
1answer
40 views
HTML text does not disappear… both is visible!?!?!
After including sIFR3 and configure the sifr-config.js the new flash-font is shown. But also the HTML-text is visible.
How can I hide the old html-text?
0
votes
3answers
37 views
Problems with IE7 keeping two buttons in a same line
Hi all, I have a problem with IE7.
I'm trying to put 2 buttons in the same line.. but its not working only for IE7 in all other browsers it works as it should( didn't check IE6, will no check). Here …
1
vote
3answers
41 views
li ul li is too long, line wraps but no indention
Hey i've a ul li .. list.
If the second word is too long it wraps automatically but it doesn't indent the line.
Any ideas how to solve that?
Here is the example:
http://tinyurl.com/yk32ek6
Then …
1
vote
4answers
61 views
HTML - Can I style a disabled control?
Hi All,
I have an html div on a page that is updated when a select element on the page changes. Sometimes the input tags (text boxes) need to be disabled based on the selection. Here is the problem, …
