html

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 class="title">Analyst</td> <td> <asp:Label ID="lblAnalyst" runat="server" CssClass="data" /> </td> <td class="title">Borrower</td> ...

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 already crowded GUI, a "Log out" button should go into the title row rather than elsewhere. The title row, of course, contains a title. The b...

Becoming a Web Designer: CMS, or by hand

I'm biting the bullet and becoming a Web Designer, there are just too many good opportunities out there. I'm a professional SW engineer, so I want approach this correctly. So far I'm fairly good at HTML/CSS/Javascript all completely by hand. I'm also good with jQuery and Django with mySql. I've made some cool sites but it takes TOO L...

Opera, custom context menu, picking up the right click

Hi, I want to implement a custom context menu on a site that I am working on. I have used document.oncontextmenu which works with all, except Opera, the main browsers that I am developing for. How would I the same result in Opera? I need to disable the default context menu and display mine. The first thing I would like to do is pick...

Specifying a single style sheet prblem.

In the case the html is opened in IE I want to use a different style sheet ONLY. However, it seems that it is pulling some elements properties from style.css as well. How can this be? Doesn't the [if gte IE 5] ensure only IEstyle.css is used? What is the best way to fix this? Thanks. <head> <title>!</title> <link rel="stylesheet"...

Alternatives for using "#" in href attribute

Possible Duplicate: Href for Javascript links: # or javascript:void(0)? Hi everyone.... This question has been bugging me for a long time and thought it's time to hear what the experts think about it... ;) Here goes... The tag is used to create hyperlinks but in this age of jquery and ajax we are using it to load html int...

Navigation bar moves for no apparent reason

I was playing around with a website mostly for my learning purposes and on just one of my pages (the 'resume' page) the navigation bar is shifted about 5 pixels to the left than all the other pages. I see no reason why it shouldn't be exactly the same as the others. Does anyone have any idea why? www.the4amburrito.com ...

How to get back to the same html page using cgi?

Hi, I am having C function. From the html page, through ajaxcall the request is passed and the response is got. If I perform some action like click submit button, then some action will be performed. How to get back to the same html page after redirection? Can I set the environment variable which automatically redirects me to that pag...

HTML5 & CSS3 Support

Hello All, My question is that currently what browsers with what versions support HTML5 and CSS3? This will help me assess when to actually dive into HTML5 and CSS3 Thanks ...

Is it ok to create anchors without providing anchor text?

If you take this example, <a name="xxx"></a> ... is this ok when creating an anchor? I have always preferred to use an already created tag for my destinations. ...

How can I make CSS tabs with drop down menus without Javascript?

I need to make tabs that also have drop down menu and requirements are that they have to work without JavaScript. Is this possible and is there good example of this somewhere? ...

Iterate through html table using jQuery, converting the data in the table into JSON

I came across a case where I have to convert html table data into json. In this process I have to iterate through table and convert one by one(row) into array and then convert the whole array into json? Need help in iterating through table(each ow and column)? ...

How to display code in plain text?

What previous result you are referencing:(Optional) function getSize() { var myFSO = new ActiveXObject("Scripting.FileSystemObject"); var filepath = document.upload.file.value; var thefile = myFSO.getFile(filepath); var size = thefile.size; alert(size + " bytes"); } A user input some Javascript code, but the code can not be...

Multi-Select Dropdown with size of 1

Is there any way of creating a combo box (<select>) with a size of 1? All the examples I can find allow for multiple selects but with a number of options visible at any one time. If this cannot be accomplished with bog standard HTML is it possible in a JS library such as JQuery? ...

How to transform xml and keep newlines?

Hi, I'm trying to preserve row breaks in an xml file when transforming it to html, but I cant find a way that works. <meta> <name>Message</name> <value>Hi! I need info! Mr Test</value> </meta> And I use this xsl: <xsl:if test="name='Message'"> <tr> <th align="left" colspan="2">Message:</th> </tr> <tr> <td colsp...

Need a good HTML parser on php

Found this one http://simplehtmldom.sourceforge.net/ but it has failed to work extracting this page http://php.net/manual/en/function.curl-setopt.php and parse it to plain html, it failed and returned a partial html page This is what I want to do, Go to a html page and get the components individual( the contents of all div and p in a...

How can I add an image to a table in Perl?

I have developed a database using Perl DBI and display using Perl CGI. Can you please suggest syntax for adding an image to the table and its background in the database. ...

How do i remove box surrounding the image while using hyperlink ?

A rectange is appearing outside the link which i dont want. How do u remove it. No Image <a href="~/Web Pages/Home.aspx" runat="server"> <img src="<%= ResolveUrl("~/Images/TestToday.png") %>" alt="No image" width="200" height="200"/> </a> ...

Highlight Section of Mapped Image when Mouseover Text on Webpage

Scenario: Image with several areas mapped. A list of text on the page Desired functionality: When I mouseover the different pieces of text in the list, corresponding areas in the mapped image will become highlighted. Does anyone know of a good javascript tool that can do this? I have found a jquery plugin (map hilight) that will ...

Removing dotted borders on click

Hello, I am using this css to remove dotted borders which appear when hyperlinks are clicked a:active, a:focus, input { outline: 0; outline-style:none; outline-width:0; } This is working fine, but doesn't work on input buttons which have background images. For Eg: Please help me remove dotted border because it ruins t...