html

Why does form affect div spacing?

I am not great with html/css. But why does the first html have Home and form textbox in the same line (as i want) and the second has the textbox (and other boxes and links) on a separate line? <div class="login"> <form action="/login?ret=%2f" method="post"><div> <a href="/" title="Home">Home</a> <input type="text" name="username"/> ...

How to display an error if the content of a <textarea></textarea> is empty using javascript ?

I know how to display an error message if the user leaves a required input field blank when filling in a form, but I am not able to do the same with the textarea. ...

Scaling a div with drop shadow on patterned background - solutions?

Howdy! I'm designing a page that has a Content Area which scales against a diagonally striped background. The Content Area div is a fixed width that will scale vertically with content. Because the border is a drop shadow, I have a repeating background image (40px wide by 80px high) that has to line up with the page background image. I ...

Does the CSS property "text-transform" affect SEO results?

I am building a site with a ton of 1999 style capitalization of navigation and headings. I have been simply adding in the text content as it appears (capitalized), but the other designer on the project insists on using lower case text in his HTML and capitalizing it with an applied style: .tedious {text-transform:uppercase;} I underst...

Pop up message like SO Flag window

How do i create a pop up window/message like what you see on this site when you click the flag link ...

Echoing a varied amount of variables into a varied amount of table cells

echo $s['name'] .": ". $result ."<br />\n"; That's my code echoing $sitename[] : $result[] Currently there are 3 sites that it echos. However I want it to echo it like so: <table> <tr> <td>$sitename[0]</td> <td>&nbsp;</td> <td>$result[0]</td> </tr> <tr> <td>$sitename[1]</td> <td>&nbsp;</td> <td>$result[1]</td> </tr> <tr> <td>$site...

CSS: Background Issues. Is this possible?

Thanks for your help in advance. Here is PNG of the layout: Website Layout The Second Section (with the dark grey background) is giving me problems. Below is the CSS I am using for the background. #mainbg { width:100%; height:450px; padding-top:25px; background-image:url(../images/mainbg.png); background-color:#303030; background-posi...

Load local .html file's strings into table view cells

iPhone OS Development I need to set the names of UITableView cells to strings I get from a local "file.html" file. I know I will need to parse the HTML but I'm not worried about that at the moment. If someone could show me some quick code that would set the first line of text in the html file and set it to an NSString variable, I think...

Reading contents of a text file using JavaScript throwing error

I'm using the following code to read the content of a text file using javascript. But when I'm getting an alert message which says "An ActiveX control on this page might be unsafe to interact with other parts of the page. Do you want to allow this interaction?" When I click on yes nothing is happening. I'm using IE 6.0 function ieReadF...

what's the best (most effecient) way in asp .net to return a whole page into tabbed content?

what i want to do is every time i click on a tab, the content area is replaced by pretty much a whole new page. i don't want a full page load so i want to do it in ajax, but i'm used to sending back small jason data via page methods. i'm not sure how i would construct a whole new page and return that via ajax and i would like to simply...

How to split a div ?

Hello, how do I split a div into two rows so I can add two grids !!!! The grid which I'm using is of TMS . ...

problem in showing pagination in IE

hey guys i made a pagination for my site here : http://nukelearn.com/ problem is showing pagination correctly in IE style for pagination is here : http://nukelearn.com/includes/mods/JQ-Forums/css/style.css plz give me a hint to correct this problem in ( hated browser : IE ) ...

Overlaying a Image over a whole web page.

Is it possible to overlay a repeating image over a entire web page? If so, How? ...

CSS Debugging help - empty div collapsing

Hi Guys, The following HTML is from an aspx page. This is in regards to to the first child DIV element. In IE7 the HTML renders as I would expect even when that DIV element is empty. It should be approximately 1/3 the width of it's parent, but in FireFox it is collapsing to zero width. All 3 divs are floated left. Anyways, my question is...

Textarea validation does not work Javascript

here is the code sample: HTML: <form id="information" name="information" action="#" method="post"> <textarea name="text" rows="10" cols="10"> </textarea> <input type="submit" value="submit"/> </form> Javascript: window.onload=init; function init(){ document.getElementById('information').onsubmit=validateForm; } fu...

WPF: Display HTML-based content stored in resource assembly

In my WPF project I need to render HTML-based content, where the content is stored in a resource assembly referenced by my WPF project. I have looked at the WPF Frame and WebBrowser controls. Unfortunately, they both only expose Navigation events (Navigating, Navigated), but not any events that would allow me, based on the requested URL...

How do I get the cell value from a table using JavaScript?

<td> <input type="button" name="buton" id="x2" value="2" onclick="swap(id)";/> </td> This is the button in a table when it is clicked it's id is passed as parameter to function "swap" as below: function swap(x) { document.write(x); } It is successful in getting the id but not the value;when i am trying in this way: func...

How do I read a file's contents into a Perl scalar?

Hi, what i am trying to do is get the contents of a file from another server. Since im not in tune with perl, nor know its mods and functions iv'e gone about it this way: my $fileContents; if( $md5Con =~ m/\.php$/g ) { my $ftp = Net::FTP->new($DB_ftpserver, Debug => 0) or die "Cannot connect to some.host.name: $@"; $ftp->log...

load page into div and keep the same page in div after refresh

hello friends, I have loaded a page into div using jQuery. But when i refresh the webpage will go to initial stage? How can i load the same page after refresh? let the inital stage is $("div").load("a.htm") after clicking on a button it will load $("div").load("b.htm") now the division contains b.htm and after refreshing it is...

What is the difference between Browser Object Model vs Document Object Model

What is the difference between the two? Can someone explain, thx. ...