Problem Removing ReadOnly In IE
Dec 1, 2006
I am having trouble with the following code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Test</title>
</head>
<body>
<input value='test' type='text' readonly='readonly'
onfocus='this.readOnly = false;'
onblur='this.readOnly = true;'></input>
</body>
</html>
In FF, this works as I would expect. When clicking on the input, the readOnly
property is set to false and the focus is given to the element, with the
cursor placed after the last character.
In IE, the readOnly property is set to false, but the element isn't actually
given focus. Instead, I have to click on the input a second time in order to
actually input text with the keyboard.
Is there a way to make this work the same in IE as it does in FF? I have
tried things like calling this.focus() and this.click() after setting
readOnly to false, but they have no effect.
View 2 Replies
ADVERTISEMENT
Jun 5, 2010
i have situation that i need to remove table that is automaticly generated, but i also need to not remove contents of table.
<UL>
<table class="mytable" width="100">
<body>
[code]....
View 2 Replies
View Related
Jul 23, 2005
I am stuck with a problem trying to mimic the behavior of a Windows
Forms Readonly textbox in HMTL/ASP.NET.
Basically, I would like the text to be readonly and overflow the
textbox (overflow attribute) with the user being able to scroll thru
the text using the arrow keys within the textbox.
I managed to get the readonly and the overflow part to work but cannot
figure out a way to let the user place the cursor within the box and
allow scrolling within a readonly textbox.
View 4 Replies
View Related
Jul 20, 2005
I have need of a readonly select element that looks and acts disabled to
the user. The problem with the disabled attribute is that the value
isn't passed to the handler, so I'm using readonly. Problem with
readonly is that is allows focus, which when the user highlights, then
hits backspace (as if to change the field), the browser does a
history.back. This is confusing to users. Code:
View 4 Replies
View Related
Apr 9, 2010
In my asp page, I have a dropdown box and 2 textbox. The dropdown has "select" as the first value. If value is select in the dropdown, i want to make the textbox as readonly, else it can be used for inputting.
I tried this:
Code:
function OnChange(dropdown)
{
var myindex = dropdown.selectedIndex;
var SelValue = dropdown.options[myindex].value;
[Code].....
But, I am not able to set to readonly. How to make textbox readonly on the select change and body onload?
View 3 Replies
View Related
Aug 13, 2010
I'm having an issue making a <select> box read only. Disabled works in that it greys it out and prevents the user from changing the value, but it also doesn't submit the value to the server (as expected). On regular inputs the readonly attribute seems to work but when applying readonly to a select, it changes nothing. It doesn't grey out the element and I can still change the value. I've done a bit of searching but can't find anything for IE6. This is for an intranet where the target is 100% IE6 so I don't care if it doesn't work in other browsers. It must be IE6 ...
View 1 Replies
View Related
Mar 10, 2010
I am passing user Id with URL , so I DON'T want the user make changes to the URL Can I do that in Java Script.
View 6 Replies
View Related
Feb 1, 2010
I want to make a checkbox in readonly state.
The checkbox is checked based on some value that is coming from a database.
I have used the disabled option for this but I am not able to read the form value when it was disabled.[code]...
View 12 Replies
View Related
Jul 23, 2005
When accessing my web page I build up the javascript and html dynamically. Depending on an parameter I want to set all the fields (input tags) readonly. How do I do this? Of course I can write if statements to add different input tags with and without the readonly attribute. But is it possible to write a javascript that onload search the page and add readonly to all input tags?
View 2 Replies
View Related
Jul 20, 2005
I'm not sure why I'm having problems with this but if I try to retrieve the
value of a readonly text form I get back that the object is undefined.
The reason the text is readonly is because it's a date which I set via a
calendar javascript program (associated with a button) only so the user
can't put something silly in requiring validation.
The form send the data correctly when submitted it just doesn't seem to be
able to be read.
View 7 Replies
View Related
Jul 1, 2011
I have to make many TextBoxes in a DIV readonly on page load based on a class assigned to them. The code that I have written is:
$("#tabcontentcontainer .GreyOuts").attr("readonly", "readonly");
and
$("#tabcontentcontainer .GreyOuts").attr("readonly", true);
This code works fine for IE8, IE9, and Chrome. But not for IE7. I have tried jQuery versions upto 1.6.1. Is there something wrong with jQuery in this case? Do I have to resort back to classical JavaScript for IE7, which you know, is a difficult task to do.
View 1 Replies
View Related
Jun 30, 2011
On blur of field1, field2 is set to READONLY but the cursor on my page then defaults to field2 and the cursor is at the END of the value and when the user clicks the backspace button the value can be erased. I would like the ability to have the cursor move to the next NON-READONLY or ENABLED field on the page. Is that do-able with jQuery?
[Code]...
View 3 Replies
View Related
Jan 22, 2009
There are two ways for me to make a input field readonly:
1)hardcoding:
In a JSP, I use <input type="text" id="test" readonly="readonly" value="1234abc" />
The field will become readonly--I can not edit the text in the field. This is what I wanted.
2) Dynamical:
But sometimes I need to achieve this at the runtime/dynamically:
Now in the javascript:
The field will display as readonly. However, I can actually highlight the text, delete and edit it.
View 1 Replies
View Related
Jan 31, 2006
Is there anyway that we can make a textbox readonly based on the value it has.
I mean,
If we have
<INPUT class="ms-input" ID=onetidIOViewName
value="AllItems" name="NewViewFileName"
size="20" title="File name">
since it has"AllItems", it the textbox should become readonly.
but the text box should be editable if
<INPUT class="ms-input" ID=onetidIOViewName
value="xyzxyz" name="NewViewFileName"
size="20" title="File name">
I am trying it like this,
var check = document.getElementById("onetidIOViewName").value;
if(check == 'AllItems')
{
document.getElementById("onetidIOViewName").innerHTML += 'ReadOnly>' ;
}
View 4 Replies
View Related
May 28, 2010
Folks, I'm no real coder however I am the "IT" guy for a non-profit. We have a registration form in which we have a few readonly fields that are numerically auto-populated by input into other fields. We need to total those readonly fields and though the function we have works(if we allow input and use the onkeyup event,) we can't find an event that will work with readonly fields. So, is there a means to trigger the function when readonly fields are auto-populated?
View 5 Replies
View Related
Sep 14, 2007
In my program, I have GMap logic that outputs location information to
a disabled input field (was previously a label). Then, when a
user clicks on a link (to start a new map), I want to save the location
data to an array prior to server processing. So, onchange, save the
input field's value to array[last_click]. But, because this field is
hidden (or readonly) I am not sure how to go about this.
View 2 Replies
View Related
Mar 13, 2010
How can I disable or make it readonly the (LOCATION OR ADDRESS BAR ) when the page is loaded keeping followin
1. Read all the parameters passesd with the url
2. Works on IE6, 7,8 , Safari , FireFox and Chrome .
In JavaScript .
View 5 Replies
View Related
Oct 2, 2009
This is probably noobalicious so apologies, i have a checkbox i am checking on and off and then setting a readonly input with a value depending upon if it is checked on/off
This works fine for one click on or off but then how do i get back out of the function once this cycle has been done once? Set something to null?
View 1 Replies
View Related
Apr 29, 2010
I got:
Quote:
<textarea class="maxwidth" name="description" onKeyDown="limitText(this.form.description,this.form.countdown,100);"
onKeyUp="limitText(this.form.description,this.form.countdown,100);">
View 1 Replies
View Related
Oct 18, 2011
Would u pls let me know whether the following is possible or not: User can be able to insert text on a text-box or text-area(form) as usually we use text-area to do so. But I want to put some readonly text using an open and close tag
for example: <ro>This is readonly text</ro>insert your text here Can I be able to make the text inside <ro>..</ro> tag readonly, it means user can't be able to modify or delete this readonly text. readonly text length not fixed. only way to recognize the readonly text is the <ro> tag.
View 1 Replies
View Related
Jul 23, 2005
I have an HTML file that has a call to a Javascript function in it as
follows:
<!-- bunch of stuff -->
<script type="text/javascript">doXMLFromString()</script>
<!-- bunch of stuff -->
Now I make a copy of this HTML file by creating a new window and writing
var body = document.body.innerHTML;
printWin.document.write (body);
But this copies the script tag above as well, and then tries to call
that JS function (doXMLFromString). I don't want it to do that.
In other words I dont want that javascript statement to be executed. I
tried removing it from the document (using removechild) however it would
still get called.
How can I stop this?
View 2 Replies
View Related
Jul 23, 2005
Just wondering there is any other way to remove the toolbar from the browser
than using
" ...toolbar=no ..."
in the
window.open(...)
is there a way to do it after the browser opened? (say some Java script)
are there any parameters or style like stuff that can be embedded in the
HTML code and does it when the new page created?
or is the above method the ONLY way?
View 8 Replies
View Related
Dec 26, 2005
I am weak when it comes to regexp but hoped someone might know in this case.
I am trying to take a url like this :
something.lasso?blah=blah&blah2=blah2&sort=hello&blah3=blah3
And remove the &sort=XXX without hurting the rest of the url. The parameter
to be replaced would be a parameter passed to a function. Here is what I
have so far:
function refresh(item) {
current = document.location.href;
if(current.match(item.name+'='))
//pseudo code here
//current.replace(item.name regexp , '');
return (current + "&" + item.name + "=" + item.value);
This function would be fired like this :
All <input type="radio" name="show" value="all"
onclick="document.location=refresh(this);">
Mine <input type="radio" name="show" value="mine"
onclick="document.location=refresh(this);">
View 13 Replies
View Related
May 24, 2006
I've been given a large number of HTML pages. Each page has one or more
tags. When the pages were being built I asked that an ID attribute be
included with each element that will later be referenced. The first
ID'ed element on the page has the ID 'item0', the next 'item1' and so on.
Unfortunately they also included a NAME element which in many cases is
similar to the ID but out by one. That is the first element on the page
has the NAME 'item1', the next 'item2' and so on.
This stuffs up some things that depend on the ID (IE seems to make use
of the NAME instead of the ID when I ask getElementByID). Is there an
"easy" way to remove all the NAME attributes, or at least make them
invisible to IE, on page load?
View 2 Replies
View Related
Apr 4, 2009
I'm having an issue in Internet Explorer to where the javascript i'm using isn't working now. In firefox it works great!
Code:
<script src="::URL::/jscript/php.js" type="text/javascript"></script>
<script language="Javascript">
function gup( name ) {
name = name.replace(/[[]/,"\[").replace(/[]]/,"\]");
[Code]....
I am using php.js from phpjs.org
You can see a live sample by visiting [URL]
View 1 Replies
View Related
Jan 4, 2011
My goal with a script I am writing is to remove signatures from a forum I am a part of. Some of the people abuse it with half a page of stuff and it's out of control. So here is what the HTML source code for it looks like
<table cellSpacing="1" width="100%" border="0" class="tback" cellPadding="2">
<tr>
<td width="100" class="headcell">Author</td>
<td class="headcell">Topic</td>
</tr>[CODE]...
The very bottom where it has the 'span' tag and it says "SEC Champions" is where the Signatures are located. I want to completely remove that using my script and this is what I have right now
function sigRemove() {
var sigs = document.getElementsByTagName('span');
for (var i = 0; i < sigs.length; i++) {
sigs[i].style.display = 'none';}}
I know it's incomplete but I only want to remove that bottom span tag and everything inside of it and not every span tag on the page.
View 8 Replies
View Related