We've heard for a long time that big companies won't upgrade from IE6 because some crucial legacy app was built specifically for IE6. Unfortunately the definition of "App", weather its a web app, desktop app, browser plugin(!), or something else is not specified.
But what actually breaks when upgrading beyond IE6? I can't really think o...
Hello!
Is it alright to place div tags inside anchor tags?
Will contents of the div redirect the page to the href of the anchor tag?
Thank you.
...
I'm tryng to download a web page in java with the following:
URL url = new URL("www.jksfljasdlfas.com");
FIle to = new File("/home/test/test.html");
Reader in = new InputStreamReader(url.openStream(), "UTF-8");
Writer out = new OutputStreamWriter(new FileOutputStream(to), "UTF-8");
int c;
while((c = in.read()) != -1){
out.write(c)...
I am kind of new to css and html coming form Actionscirpt.. I was wonder if there is a better way to do this.
I created an external css with following div.
#myDiv{
position:absolute;
top:200px;
left:200px;
width:200px;
height:200px;
}
and in html I want to use the same div for 3 different things with different value/property.
<di...
I'm a painter who's building a website portfolio/print shop.
I was wondering if anyone had seen some exceptionally good layout design in presenting a variety of paintings. My go-to resource so far has been the MOMA, but they are a little cluttered for my taste.
Googling it has resulted in some seriously hideous and chaotic design, and ...
jQuery(document).width() doesn't include the total width (viewable + outside of viewable when there's a horizontal bar). It equals jQuery(window).width(). I thought jQuery(window).width() is the viewable area width and jQuery(document).width() is the total width.
How do I get the total width or how do I get the width of the area outside...
Hi experts,
First of all let me know if my question is completely vague or doesnt make any sense.
What I am trying to do is:
I Have a page which displays some blocks of data (Block can be considered as a row of data). Each block will be seperate <DIV> and inside this <DIV> I have Nested two tables.
My question, How do I populate or g...
Is there any way to make a "safe" paste into Visual Studio (C#) of HTML code? If I try to paste something like
<div class="user-info"><div class="user-action-time">answered <span title="2010-09-16 02:23:16Z" class="relativetime">21 mins ago</span>
into my code, C# will cry. Using the @ operator doesn't help us, either.
Is it possible...
It's normal case, user inputs a username with password, and after that the entire system can be accessed. Suppose I have a page a.php(or ASP), how can I restrict only the user that has been authorized can view a.php, for other user if they type (http://host/a.php) in browser, they will get an error?
And furthermore, is it done thru cook...
I have been noticing a trend in blogs where the images don't load until you scroll down the page and the images appear in the view screen.
I imagine that this must be some sort of jquery magic, but after some googling I haven't been able to figure out how it works. Does anyone know how this is done?
EDIT: If you want to see an exampl...
In my web application one of my pages is uploading a photo to the path
/usr/local/rac/picture-name-goes-here
The photo is uploading fine, but I need to access it in another page and when I try to access it from my JSP, it will not show up, I am guessing my path to the photo is incorrect
The code in my JSP to access the photo looks li...
I have an unordered list and I have set the style property 'none' so that the circles are not displayed before the list items. It works fine in Firefox but in IE still those circle are present. So can any one help me how to it in IE also?
I have written like:
<ul type="none" style="text-align:left;">
<li><a hr...
I have two html pages example1.html and example2.html, how will i pass variables from example1.html to example2.html using query string and retreive that variable in example2.html without using any serverside code
...
I'd like to represent strings as arbitrary html colors.
Example:
"blah blah" = #FFCC00
"foo foo 2" = #565656
It doesn't matter what the actual color code is, so long as it's a valid hexadecimal HTML color code and the whole spectrum is fairly well represented.
I guess the first step would be to do an MD5 on the string and then someho...
I am just testing the brand new Internet Explorer 9 Beta with my website. I see a weird behaviour for some form values and I am not sure if it is my mistake or a bug in IE9. What do you think?
I have one form which declares several hidden input fields like this
<input type="hidden" name="NewStatus" />
<input type="hidden" name="lastSav...
Hi all,
I have a button called 'view', when I click it will fire an ajax call and show details of a product in a div in the page. In this div, I show product details like description, uploaded date.
The problem is that, all data are coming nicely in this div including date, but when we click the calendar to edit (this div content is e...
I used some div and ul to display some items in list as shown bellow. In Firefox and chrome all the links works fine. But in IE link 'All Items' and link 'Information' does not work.I have found some clues like due to 'margin-left' property it is occurring.If I remove 'margin-left' from that specific anchor link it works, but alignment i...
I'm interested to find out how to scrub a html page and present it nicely -- remove all the clutters and reformat the main text into a very readable format -- like http://lab.arc90.com/experiments/readability or Instapaper.
Is it a simple page parsing and removing elements that are not within ?
Was this discussed else where?
...
I have a problem and I can't figure out what exactly is causing this behavior. I cannot access my input fields and textareas on my HTML form.
Unfortunately, the JS, HTML and CSS are very large, so I can't really post it all here.
Can anybody tell me what to look for when debugging this strange behavior?
UPDATE
If I move the cursor ...
Hello ,
I'm using Delphi and WebBrowser componenet to navigate a html page . the page have a Combobox . is there any way to call the OnChange event ?
The ComboBox is like this :
<select name="comboname" onchange="Some Javascript codes">
Also , i have used this code :
function TFrmMain.SetComboboxValue(WB: TEmbeddedWB;
SelectName,...