I inherited a customer after their programmer passed away. They have 4 commercial sites running what I believe is Adobe Go Live code from what I’ve found on Google.
This works perfectly as long as all .asp scripts and the images directory is off the web’s root directory. I needed to move the ‘store’ scripts under a ‘store’ sub director...
Is it possible to link to someone's outlook calendar (assuming you have priveleges to view it through outlook itself) from a web page?
I am working on an intranet site and would like to provide a link to someone's calendar similar to:
outlook:\\Public Folders\All Public Folders\Shared Calendar
However, this is not a public calen...
Hi all,
So I have a DIV that contains some dynamic text. Let's say I know the text and font-size but I don't know the size of the DIV. I'd like the display of the text in the DIV to be intelligent enough to show indentation when text wraps.
Say my original text looked something like this:
Lorem ipsum dolor sit amet,
consectetur ad...
I'm trying to set a column width of a table, which works fine until it gets to the point where child elements would be visually truncated ... then it won't size any smaller. ("visually truncated"-what doesn't fit appears to be hidden behind the next column)
Here is some sample code to demonstrate my problem:
<!DOCTYPE html PUBLIC "-//...
First I must say that my problem happens when I'm trying to post to another form.
I have 3 controls in a form:
1. text input named "text1".
2. file input named "file1".
3. submit input.
the form itself have a post method to another page.
in the page load of the posted page I'm using Request["text1"] which gives me the text of "text1". ...
I've got a <div> that needs a gradient background. However, the size of the div is variable, which lands me back in "can't do gradients in CSS" land.
However, I'm pretty sure this is possible in jQuery, I just can't seem to find a decent example. Does anyone have something they can point my way?
Thanks.
...
I'm currently designing a site which uses a dark background, and just out of interest, I disabled CSS and took a look at it. Because it's been marked up semantically, without styles it's still a coherent document, except for the fact that my heading images are white, and because the default background colour is also white, you can't see ...
Hello,
The question says it all! I am looking for an easy to use alternative of blockUI for jQuery. I've been trying for days to center a dialog box with blockUI in both FireFox and IE but no chance. It doesn't work. I looked at this question about centering a blockUI dialog box (http://stackoverflow.com/questions/294502/how-can-i-get-a...
I have an annoying CSS layout problem. I'm trying to float images on a particular page:
img {
float: left;
}
I think make sure my headings don't start indented with:
h3 {
clear: left;
}
It all works fine except for some of the images that have lists (or any block element) floating past them (or not as the case is). The reason...
Hi, I have a SWF Video player on my webpage. I want to draw a div tag over it with a high z-index to act as a popup on it . Its a very generic popup. Hence I cannot make it as a part of swf. but, SWF seems to have very high zIndex and would not allow any HTMLO entity to sit over it. How do I achieve this or is there an alternate soluti...
I am new to usage of objects in HTML esp dlls
I need to use a 3rd party dll in my html page for which I need the classid which was not provided to me. I have tried using the following command to generate the type library and register it.
"regasm XXXXXXXX.dll /register /tlb"
After I am done with the above statement, I have used oleview...
Hi. On my home page I'm using next method to hide my email from spam bots:
<a href="admin [at] example.com"
rel="nofollow"
onclick="this.href='mailto:' + 'admin' + '@' + 'example.com'">Contact me</a>
What do you think about it? Is it effective? What other methods do you know or use?
...
I have come across a problem where, my asp.net code is being rendered differently on Firefox and IE. When I say differently, I mean, A linkButton in IE renders as anchor tags. On Firefox however, it renders as a span
code example
<ItemTemplate>
<div id="<%#Eval("Id","{0}") %>">
<asp:LinkButton ID="ProductName" runat="server" ...
Is there a way in javascript to determine which html page element has focus?
...
I have an HTML page with a typical structure:
<html>
<head>
<script .../>
<style .../>
</head>
<body>
content
</body>
<script>
var success_callback = function(data) {
// REPLACE PAGE CONTENT & STRUCTURE WITH "data"
}
ajax(url, params, success_callback);
</script>
</html>
Do you think it is possible ? I've alre...
Apologies if this is a n00b question but I can't find a straight answer anywhere.
Is it possible for format an HTML tooltip?
E.g. I have a DIV with attribute title="foo!". When I have text-size of my browser zoomed in or out in, the text size of the tooltip remains unchanged. Is there a way to make the tooltip font scale with the bro...
Im working on a project in MVC and have enjoyed learning about it. There are a few growing pains but once you figure them out it's not bad. One thing that is really simple in the WebForms world is maintaining the scroll position on a page. All you do is set the MaintainScrollPositionOnPostback property to true. However, in MVC, Im no...
My goal is to make the title of every external link equal to its href attribute.
My question is, how can I make the title variable available to the attr function?
$('a').filter(function() {
var title= $(this).attr('href');
return this.hostname && this.hostname !== location.hostname;
})
.removeAttr('target')
.attr('rel', 'externa...
This is the code I have that HTML Validator is giving me an error on:
<input type="text" id="search" name="keywords" /> <input type="submit" value="Search" name="Submit" />
Here is a screen shot of error in HTML Validator: http://i39.tinypic.com/mw2m92.png
This is the error message I am receiving:
The mentioned element is not allowe...
When I want to refer to some part of a webpage with the "http://example.com/#foo"-method, which one is The One to use:
<h1><a name="foo"/>Foo Title</h1>
or
<h1 id="foo">Foo Title</h1>
I know that both work, but are they equal, or do they have semantic differences?
Edit: The (X)HTML-dialect I'm working on is HTML5, but don't let th...