Hi All,
I am working on a small application below where there is a collection of list items all list items should be within the box no matter how many they are like they can be on the second column. Also I want to keep a limit on the number of list items that can be displayed like not more then say 10 so the moment there are 10 items th...
I have HTML code I got from a designer of the form:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="100" height="20">
<param name="movie" value="PRODUCTS.swf" />
<param name="quality" value="high" />
...
Hi all,
I have my site wrapped in one big DIV, called wrapper, that starts just after <body> and ends right before it. I.e.
<body>
<div id="wrapper">
... website ...
</div>
</body>
I have the following code styling #wrapper
#wrapper {
width: 960px;
margin: 0 auto;
padding: 0 7px;
background: #c1cca0 url(images/fade.gif)...
When I convert the HTML content to MSword, a thread aborted error message occurs. Below is the error log:
HttpContext.Current.Response.Clear()
HttpContext.Current.Response.Charset = ""
HttpContext.Current.Response.ContentType = "application/msword"
Dim strFileName As String = "GenerateDocument" + ".doc"
HttpContext.Current.Response.Add...
On a website I'm creating, I have about 100 various thumbnails (64x64) that get displayed at different times. On some pages, only 5-15 thumbnails may be displayed. On others, all 100 are loaded.
I'm considering using a technique like CSS sprites to display the images. That is, rather than have image tags for each thumb, do something lik...
If you want to prepopulate an html text field with a string that includes a double quote ("),
you need to html-encode it, as " , unfortunately, the string '"abc"' encoded as ""abc"" submitted with the form to the server, is indistinguishable by the server from the string ""abc"" entered literally.
Using ' to del...
Hi searched through the questions here, but couldn't find anything. I'm new at writing PHP and jQuery, so bear with me.
What I'm trying to do is send an ajax request using jQuery to my script which runs a mysql query on data from my database and serializes it into the JSON format using php's json_encode. The response is then parsed with...
Hi All,
I am trying to align an image and some text together. If you refer the below code there will be and image and some text( Name and Age) I want both of them to be next to each other. I did try float: left but still no luck.
Thanks
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/x...
As stated in, When did single quotes in HTML become so popular? and Jquery embedded quote in attribute, the Wikipedia entry on HTML says the following:
The single-quote character ('), when used to quote an attribute value, must also be escaped as ' or ' (should NOT be escaped as ' except in XHTML documents) when it appe...
Using CSS Style Sheet
In my web page, i have two class like menu and leftside. In menu i have the ul, li classes. i want to use a ul, li in left side also, but the problem is if i used the ul, li, it was matching with menu ul, li
ul -underlist, li - list
I tried to change the code of sheet,
my css code.
#leftside{
float: left;
...
Hi
I am trying to develop an HTML page (internal of course) that can in some way be able to load another application. I don't mind using any language to do that. I am using a webkit interface to render the HTML page (well, it QTWebKit) and sadly it does not allow using ActiveXObject (JavaScript) to be used to call another app. I am not ...
I'd like to be able to output an HTML file which includes an image (within the file itself). By Googling, I've come across a couple of ways to do this:
javascript:imageData
a data URI such as <IMG SRC="data:image/gif;base64,[...]">
<object ... > tag (although this uses a data URI, so may inherit the same limitations)
But I don't know...
I have a web page with one input text for the barcode content and a select for the barcode type.
So using the database, it is possible to generate the barcode in the good format.
A normal final user don't know which barcode as which type, but the barcode reader knows and can send this type as a keyboard input.
The problem is that I do...
Hi all,
Do you know, how to fix the size of a td Width and Height in a table allowing the rest of td on table to expand as needed?
Thanks.
The problem is that when there is data inside of td's it will not shrink more than the data, but if is empty it will shrink all the way, if you expand the window the td will expand.
I would like t...
I have one content page where there are links to different documents like .doc, .docx, .ppt .pptx, .txt.
I want to apply/add class dynamically not manual. like as per the link content.
<h3><a href="document.pdf" class="pdf-file">Document.pdf</a></h3>
.pdf-file {
background:url(../images/pdf-file.png) right center no-repeat; padding-rig...
When user clicks on a hyperlink, i am opening a popup window which downloads a file. Post download, it shows open/save dialog box. I want to close the popup window once the download is done (when user is prompted for saving the file).
I have tried window.close method, but it doesnt work as the context is not the popup window but the open...
I am using tomahawk 1.1.9 fileupload component t:inputFileUpload
It displays a placeholder for the file that gets uploaded and a button that has label "Browse".
I want to hide that Place holder and want to give my own label to the button instead of "Browse".
...
I have an iframe that references an external URL that serves up pages that contain Flash adverts.
I need to track how often a customer clicks on one of those adverts.
The approach I am taking is to render a div element over the iframe. This allows me to intercept the click event, however I need to pass that click down to the iframe. Is...
How would I go about creating a textbox with an auto-expanding width to fit it's content?
I keep finding plenty of info on height based expansions but not much on width.
I'd also like it to apply to every textbox on the page and not just specific ones.
...
Hi
I've seen a lot of dynamic website through the internet that their pages are in html or htm format . I don't get it why is that ? And how they do that ?
Just look at this website : http://www.realmadrid.com/cs/Satellite/en/Home.htm
...