html

How can I dynamically update a variable in plain html files in on windows web server.

We have some old html files on the website that have copyright year on the bottom of the page (from include file). We are trying to find a way to update that dynamically to current year so the include file does not need to be edited every year. We are using asp and .net on the same server so there might be ways to use those technologies...

php image include problem

hi, im using this php file as a header in my site. my problem is that i have included an image but it is does not displayed what is the problem?? this is my code <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> </head> <body> <h2><center><img src="../../../../Users/se...

SharePoint Designer Reformatting HTML on the fly, able to disable?

Before I tear what is left of my hair out I have been trying to modify some master pages in SharePoint Designer and whenever I make HTML markup changes it reformats them as it see's fit. For example, I am trying to make the code readable so I am moving items to their own lines and such. As soon as I save it moves everything back to a s...

JavaScript DOM code not working

My HTML has cell = document.createElement("td"); cell.appendChild(document.createTextNode(contents)); cell.setAttribute('width', '100'); // The following syntax not working cell.appendChild(document.createElement('br')).appendChild(document.createTextNode("Another text")); And after the contents of the cell, I have a line break fol...

Resources for building public information displays using HTML/CSS?

I would like to displays schedules, maps and other informations on displays in a building for visitors. These displays would provide at most mouse input but no keyboard. Ten years ago this was the domain of Macromedia Director but today I believe that browsers and content management systems provide a better architecture. However, I coul...

If a CSS rule changes, does the browser need to be refreshed

If I have changed a CSS rule via javascript, do I need to do anything to "refresh" the browser to redisplay the current page using the updated rules? ...

Are there any WYSIWYG HTML editors that don't mess up the code?

I've tried various editors, both desktop applications and web-based RTEs, but have not found anything that works very well. All too often, they mess up code, adding in "tag soup". Even the ones that claim to only produce valid code often produce a total mess of span tags and style attributes. Here are some of the features I'm looking fo...

Maximum time for HTML metatag refresh

In <meta http-equiv="refresh" content="n"> Is there a maximum value for n? Is there a number large enough to where the browser, or whatever is counting down, will fail to refresh after n seconds? ...

Which editor would you give your mom to let her edit her own website?

I mean this quite literally. A close relative wants to create her own website for her business and asked me for help. I've offered her to set up the website, take care of domain registration and all, but I don't have the time to design the website for her. So, I want to give her a software in which she can edit the page and publish it on...

Is there an application that generates an HTML form from a PDF?

Is there an application out there that Generates an HTML form from a PDF file? Also, it would need to generate the HTML form so that it would be able to submit to the PDF to fill out the fields inside the PDF. PDF is not so good at validation and it's just a kluge interface to begin with. ...

Hide/Show Column in an HTML Table

I have an HTML table with several columns and I need to implement a column chooser using jquery. When a user clicks on a checkbox I want to hide/show the corresponding column in the table. I would like to do this without attaching a class to every td in the table, is there a way to select an entire column using jquery? Below is an exa...

Need help with onclick syntax in classic asp environment

can't seem to get the syntax right in order to pass the AttID variable. This line of code is in a for loop so I have to print using vbs response.write and not just straignt html. Response.Write "<TD class=alt><input type=button onclick=deleteRecordAtt(AttID) value=remove></TD></TR>" ...

What is the best way to search through HTML in a C# string for specific text and mark the text?

What would be the best way to search through HTML inside a C# string variable to find a specific word/phrase and mark (or wrap) that word/phrase with a highlight? Thanks, Jeff ...

Problems with HTML <marquee> tag

Actually I am trying to move some box alternatively with in another box. I made it work, but both the blocks do not interrupt each other. What should I do? How can I make the blocks cross each other? I try using style:position, but it is not working. Here is the code I have been using: <marquee direction="down" behavior="alternate" scr...

Any way to synchronize table column widths with HTML + CSS?

I have a number of tables with the same columns and it would look a lot nicer if they shared the same column widths. Is such a thing possible? Putting them in the same table with some rows with no borders between them isn't an option. Edit: Yeah I'm aware I can fix the widths myself but I was hoping for something that would tie in to ...

Default value for <select> tags

I've got a select with two 'special' options, a bit like this: <select> <option value="????">Choose one:</option> <option value="1">option1</option> <option value="2">option2</option> .... <option value="????">Free input</option> </select> When the user selects nothing, I should ignore the input. When the user selects 'free inp...

Regular Expression Help

I am trying to find all of the links in source code on a website, could anyone tell me the expression i would need to put in my Regex to find these? Duplicate of (among others): Regular expression for parsing links from a webpage? Google finds more: html links regex site:stackoverflow.com ...

animation using jquery

Hi friends, I need to animate a square, just like move around with in a div. Its should never stop until i meet a condition. Please help me how to write this.. I could use some example... ...

How do I disable tabs for <a> tag

Hi, I am using tags for links on a web page. How do I disable tab key from selecting either of them. ...

HTML What is the height of a horizontal scrollbar?

Hi, For an overlay i need to know the height of a vertical scrollbar. What can i do to get this value? And is the height the same in FireFox and Internet Explorer? Thnx ...