Hi,
In order to have the scroll bar from top to bottom you have to specify the height and width of the div tag as,
.iframe
{
overflow:auto;
height:30px;
width:420px;
}
Type: Posts; User: Vallim; Keyword(s):
Hi,
In order to have the scroll bar from top to bottom you have to specify the height and width of the div tag as,
.iframe
{
overflow:auto;
height:30px;
width:420px;
}
Hi,
Refer the link below,
http://www.thecodebehind.com/code/javascript/examples/javascript-textarea-buttons-bold-italic.aspx
to make the text bold,italic and underline using javascript.
...
Hi,
Could you use like this,
<a onclick="format('<B>', '</B>', 'BOLD')"><img src="bold.gif"></a>
In my first post i ment you to use the below syntax,u need not use the <a>tag between...
Hi Kusalo,
Creating a html control like <input type="button" causes the form to be submitted.So to avoid the form submission, you can use
<img src=" "> and write an event handler to perform the...
Hi Pradeeh,
You can restrict the user entering file name directly to the textbox by writing a Keypress event as
Script
<script language="javascript" >
function onkeyPress(e)
{
var...
Hi,
You can load the write a function on the body load() , which specifies the order of the IFrame to the loaded.
HTML
<body onload="LoadIframe()">
Script
Hi,
You could use the below code to write the contents of the <textarea> to a textfile. Here the ActiveXObject to write to the file.As per the coding NewFile.txt will be created under the C drive,...
Hi,
You could use the following code as below , to get the bold tag been placed inbetween the text of the TextArea.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"...
Hi
You can use the code below to vertically scroll the contents.
<html>
<style type="text/css">
#marqueecontainer
{
position: relative;
width: 200px; /*marquee width */
Hi Redice,
You can use the following Css and script to make an image scroll.
Css
<style type="text/css">
#marqueecontainer
{
position: relative;
Hi Mtran,
You can use the following Css styles
<style type="text/css">
#container { background-color:#ffffff; width:1000px; border:1px solid; margin:0 auto; border:1px solid;...