html

Set Page Top Left using Meta Tags - HTML

I want to set Top and Left position of MY Page using Meta Tags Kindly suggest some solution ...

Access denied problem in AJAX

Hi friends, I want to parse a web page into my page, so i prefer AJAX in my code. While using the AJAX it showing "Access denied" - before fetching the specified page. The page doesn't consider any login information. Even though i cant able to get the page of google too.. Please guide me to how to use the AJAX so for Thanks, Praveen ...

jQuery code in plain Javascript

How can I write this jQuery code in plain Javascript? I can't use jQuery where this is going to be used. $(function(){ $("td#dark[height='260']").append("<a href='http://www.website.com'&gt;&lt;/a&gt;"); }); ...

what meta-tags in the header of an (x)html page should be enough for SEO whitout overload it?

what meta-tags in the header of an (x)html page should be enough for SEO whitout overload it? ...

Tables looking good in Firefox but not IE

Hello, First time question here. I have a site that I built around tables, I know not good, but it has been done. It looks fine in Firefox, but the text is all over the place in IE. Link is http://www.mothershipinc.com Warning: contains music Here is the code for the index page: <?php include "db.php"; function imageResize($width,...

HTML Table Rows

What is the best way to turn off the visibility of a row(s) and have the gaps removed. Also the reverse, if turning on the visibility making sure that the visible row(s) are displayed again. Thanks ...

What's the best way for my client to add pictures to website

I am working with an artist to make her personal website. She would like to sell her artwork from the website. The issue is, she would like to be able to add, remove and price the artwork herself. She would also like to use paypal as the payment method. Obviously design and coding is easy for me, that's all static. I am not sure however...

Fetching page source

I have the following code in my page <html> <head> <title>testpage</title> <script language = 'javascript'>function fchange(){alert(document.getElementById("ifrm").value);</script> </head> <body> <iframe id = 'ifrm' src = 'http://www.google.com' width = '700' height='500'></iframe><input type='button' onclick = 'fchange()' ...

What are your favorite JavaScript libraries/scripts for creating tooltips on the web?

I've used jTip (jQuery plugin) and overLIB in the past. Are there any others I should be looking into...any accepted "best" one? ...

Embedding HTML files in other HTML pages

I am new to HTML. I have an html page named "main.html" and i want to include another html page called "menu.html" in it. My main.html page doesn't include frames and it is designed using div tags. My site is hosted on linux based server The site I have to redesign is Java questions. ...

getPixel from HTML Canvas?

Is it possible to query a HTML Canvas object to get the color at a specific location? ...

speeding up multiple onmouseover events in IE

I have a web page with many (up to 100+) html elements on it. Each one has an onmouseover event registered to fire to do some logic and rendering depending on which element is hovered over. I am finding that in IE the more onmouseover events that are regitered the longer they take to fire. In Firefox the speed is fine and in Chrome ev...

How can I remove unused, nested HTML span tags with a Perl regex?

I'm trying to remove unused spans (i.e. those with no attribute) from HTML files, having already cleaned up all the attributes I didn't want with other regular expressions. I'm having a problem with my regex not picking the correct pair of start and end tags to remove. my $a = 'a <span>b <span style="color:red;">c</span> d</span>e'; $a...

Specifying Tab-Width?

Is it possible to define the tab-width when whitespace is displayed (say within a <pre> tag or something)? I can't find anything to do this with CSS, but this seems like it would be a pretty common thing to want to do. In my case, the tab width is so wide that it causes some of my code snippets on a page to be too wide. If I could someh...

Why does my YUI data table not display correctly in IE?

I have a YUI datatable set up, with about 90 rows of data in it and I want the user to order the columns as they see fit and then print the page. I have all the YUI stuff set up and it works great. However when printing, it removes all the coloring, and plays with the table layout. I added this: [ H1 { text-align: center } .hid...

How can I temporarily prevent a scrollable div from scrolling?

Here is my current situation: I have a web page containing a couple scrollable divs. Each of those divs contains a number of objects. I am using YUI to display popup menus of actions that can be performed on each object. Each object has its own menu associated with it that is constructed and displayed dynamically. The popup menus can be...

Access content to be written to browser in ASP.NET

I am looking to access the content of a web page that is going to be written to the browser. I have played around and tested using Form Adapters and that works great for any content between <form> and </form> but the content that falls outside of it is not in the context that is passed to the Form adapter. Is there a way (via an HTTP M...

Post newline/carriage return as hidden field value

I need to post multi-line data via a hidden field. The data will be viewed in a textarea after post. How can I post a newline/carriage return in the html form? I've tried \r\n but that just posts the actual "\r\n" data <input type="hidden" name="multiline_data" value="line one\r\nline two" /> Is there a way to do this? ...

C# - Processing html tag attributes

I'm getting some html data from remote server and before displaying it in the UI of application i need to make some changes, i.e. delete counters, replace links, etc. Removing some tag with contents and changing specific link is not a big deal, but when it comes to some advanced processing, i have some problems.There is a need to replace...

How does Facebook keep the header and footer fixed while loading a different page?

When browsing through Facebook pages the header and fixed footer section remain visible between page loads AND the URL in the address bar changes accordingly. At least, that's the illusion I get. How does Facebook achieve that technically speaking? ...