Welcome Guest ( Log In | Register )




                Web Hosting Guide

Javascript: Text To Texbox And Back To Text
clovis818
post Mar 5 2006, 10:04 PM
Post #1


Newbie [ Level 1 ]
Group Icon

Group: Members
Posts: 1
Joined: 5-March 06
Member No.: 11,759


i need some help i want to create a thing where when some one double clicks a certain text it changes into a texbox where they can edit the text and the they double click and it changes into the test they just typed in.


I have found this function in javascript that does some of it but i needs to be simplified
CODE

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Span to Text Box - Demo - DOM</title>
<script type="text/javascript">
/* © John Davenport Scheuer */
function exchange(el){
var nodeI=el.parentNode, inputC=document.createElement('input'), text=el.innerHTML;
el.style.font='.9em "ms sans serif", "sans"'
el.innerHTML+='\x20'
with (inputC){
setAttribute('value', text, 0)
setAttribute('size', text.length-1, 0)
style.width=document.all&&!window.opera? el.offsetWidth-2+'px' : el.offsetWidth+2+'px'
setAttribute('type', 'text', 0)
setAttribute('id', el.id, 0)
}
nodeI.replaceChild(inputC, el)
}
</script>
</head>
<body>
<span id="itm1" onclick="exchange(this)">House</span><br>
<span id="itm2" onclick="exchange(this)">SpantoTextBox-Demo</span><br>
<span id="itm3" onclick="exchange(this)">Span to Text Box - Demo exchange(this)</span><br>
<input id="itm4" type="text" value="Existing Text Box"><br>
<span id="itm5" onclick="exchange(this)">In Line Test</span>
<span id="itm6" onclick="exchange(this)">In Line Test Too</span>
<span id="itm7" onclick="exchange(this)">In Line Test Also</span>
</body>
</html>


If its possible to have it in php or javascript please

This post has been edited by miCRoSCoPiC^eaRthLinG: Mar 6 2006, 08:07 AM
Go to the top of the page
 
+Quote Post

Posts in this topic


Reply to this topicNew Topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 

Collapse

> Similar Topics

    Topic Title Replies Topic Starter Views Last Action
No New Posts   3 PerfecTiion 537 4th March 2010 - 10:57 AM
Last post by: yordan
No new   37 snutz411 9,214 3rd March 2010 - 10:20 PM
Last post by: John Heinl
No New Posts   2 grim reaper1666 131 2nd March 2010 - 01:19 AM
Last post by: John Heinl
No New Posts   11 szupie 3,820 23rd February 2010 - 10:22 PM
Last post by: HannahI
No New Posts 7 FirefoxRocks 5,000 23rd February 2010 - 03:16 PM
Last post by: iG-Patfreeze
No New Posts   17 kc8ual 3,011 23rd February 2010 - 06:29 AM
Last post by: Quatrux
No New Posts   17 Jimmy89 4,782 23rd February 2010 - 12:36 AM
Last post by: iG-David
No New Posts   7 Eggie 150 15th February 2010 - 10:34 PM
Last post by: Nelson Blogs
No New Posts   12 dragoneye 10,247 9th February 2010 - 08:04 PM
Last post by: iG-Jerry
No New Posts   10 tansqrx 8,239 9th February 2010 - 12:50 PM
Last post by: iG-gagan deep singh
No New Posts   14 bob3695 10,057 8th February 2010 - 09:19 PM
Last post by: iG-Manish Patel
No new   21 wannabeeaweak 7,893 6th February 2010 - 06:58 AM
Last post by: FirefoxRocks
No new   19 vdhieu84 8,441 4th February 2010 - 07:48 PM
Last post by: iG-Mike
No New Posts   8 Supa Comix 8,498 29th January 2010 - 05:34 PM
Last post by: 8ennett
No new   25 JohnNitro 15,327 26th January 2010 - 11:30 AM
Last post by: iG-mdshare


Web Hosting Powered by ComputingHost.com.
HONESTY ROCKS! truth rules.
Creative Commons License