Re: [jQuery] problem with "edit in place" on HTML coding.

2007-03-01 Thread Mark
thanx for the suggestion. gonna try that 2007/3/1, Mika Tuupola <[EMAIL PROTECTED]>: On 1 Mar 2007, at 02:15, Mark wrote: > yea.. i was just thinking about the same.. i think i`m gonna give > that a try.. > > 2007/2/28, Karl Rudd <[EMAIL PROTECTED]>: Unfortunately you can't > just "assign" a

Re: [jQuery] problem with "edit in place" on HTML coding.

2007-03-01 Thread Mika Tuupola
On 1 Mar 2007, at 02:15, Mark wrote: > yea.. i was just thinking about the same.. i think i`m gonna give > that a try.. > > 2007/2/28, Karl Rudd <[EMAIL PROTECTED]>: Unfortunately you can't > just "assign" a function that runs on the > server to JavaScript (running on the client). The best yo

Re: [jQuery] problem with "edit in place" on HTML coding.

2007-02-28 Thread Mark
yea.. i was just thinking about the same.. i think i`m gonna give that a try.. 2007/2/28, Karl Rudd <[EMAIL PROTECTED]>: Unfortunately you can't just "assign" a function that runs on the server to JavaScript (running on the client). The best you could do would be to POST the content back via AJ

Re: [jQuery] problem with "edit in place" on HTML coding.

2007-02-28 Thread Karl Rudd
Unfortunately you can't just "assign" a function that runs on the server to JavaScript (running on the client). The best you could do would be to POST the content back via AJAX. Karl Rudd On 3/1/07, Mark <[EMAIL PROTECTED]> wrote: > oke.. i fixed the issue now. > incase you want to know the solut

Re: [jQuery] problem with "edit in place" on HTML coding.

2007-02-28 Thread Mark
oke.. i fixed the issue now. incase you want to know the solution i added this function: function html_entity_decode(str) { var ta=document.createElement("textarea"); ta.innerHTML=str.replace(//g,">"); return ta.value; } than i edited this line: i.value = self.revert; to: i.value = html_enti

Re: [jQuery] problem with "edit in place" on HTML coding.

2007-02-27 Thread Mark
i don`t think that helps.. the text must be editable so it doesn`t _NEED_ to be a div. also a div could cause other problems.. and it will in the place where i need it :( i will try to put up a example somewhere. 2007/2/27, Danny Wachsstock <[EMAIL PROTECTED]>: I'm not sure if this will solve

Re: [jQuery] problem with "edit in place" on HTML coding.

2007-02-27 Thread Danny Wachsstock
I'm not sure if this will solve your problem, but a cheap way to emulate html_entity_decode is: function html_entity_decode(string) {return $('').html(string).text()} It creates a div, uses your string as the innerHTML, and outputs the HTML created. If the string is not valid HTML, things may no

Re: [jQuery] problem with "edit in place" on HTML coding.

2007-02-27 Thread Mark
no that`s not the best way.. can`t i assign a php function to javascript and use it the same way i would have done with php? 2007/2/27, Sam Collett <[EMAIL PROTECTED]>: On 27/02/07, Mark <[EMAIL PROTECTED]> wrote: > yea oke.. but do you guys have any idea how to solve this issue? > in php it wo

Re: [jQuery] problem with "edit in place" on HTML coding.

2007-02-27 Thread Sam Collett
On 27/02/07, Mark <[EMAIL PROTECTED]> wrote: > yea oke.. but do you guys have any idea how to solve this issue? > in php it would be: html_entity_decode() but that doesn`t work in > javascript.. besides the fact that i would need to edit the plugin and i > have no idea where i need to edit it.. :(

Re: [jQuery] problem with "edit in place" on HTML coding.

2007-02-27 Thread Mark
yea oke.. but do you guys have any idea how to solve this issue? in php it would be: html_entity_decode() but that doesn`t work in javascript.. besides the fact that i would need to edit the plugin and i have no idea where i need to edit it.. :( 2007/2/27, Sam Collett <[EMAIL PROTECTED]>: On 27

Re: [jQuery] problem with "edit in place" on HTML coding.

2007-02-27 Thread Sam Collett
On 27/02/07, Mark <[EMAIL PROTECTED]> wrote: > i`m trying to edit the whole tag. > and i can`t post any samples online.. i don`t have any sites online.. i do > have some free subdomains somewhere but i hardly know where i left them :P > perhaps in the future.. You could upload them to Google Pages

Re: [jQuery] problem with "edit in place" on HTML coding.

2007-02-27 Thread Mark
i`m trying to edit the whole tag. and i can`t post any samples online.. i don`t have any sites online.. i do have some free subdomains somewhere but i hardly know where i left them :P perhaps in the future.. 2007/2/27, Mika Tuupola <[EMAIL PROTECTED]>: On 27 Feb 2007, at 01:47, Mark wrote: >

Re: [jQuery] problem with "edit in place" on HTML coding.

2007-02-27 Thread Mika Tuupola
On 27 Feb 2007, at 01:47, Mark wrote: > > i have a edit in place thing now and i have this text: > > #INCLUDE# > > > > when you click on the the text field pops in BUT the content is > > suddently different.. the content now is: > > > sorry, i forgot to me

Re: [jQuery] problem with "edit in place" on HTML coding.

2007-02-26 Thread Mark
sorry, i forgot to mention that.. i`m using the jEditable plugin. 2007/2/26, Mika Tuupola <[EMAIL PROTECTED]>: On 26 Feb 2007, at 21:55, Mark wrote: > i have a edit in place thing now and i have this text: > #INCLUDE# > > when you click on the the text field pops in BUT the content is > sudde

Re: [jQuery] problem with "edit in place" on HTML coding.

2007-02-26 Thread Mika Tuupola
On 26 Feb 2007, at 21:55, Mark wrote: > i have a edit in place thing now and i have this text: > #INCLUDE# > > when you click on the the text field pops in BUT the content is > suddently different.. the content now is: > Which edit in place plugin are yo

[jQuery] problem with "edit in place" on HTML coding.

2007-02-26 Thread Mark
Hey, i have a edit in place thing now and i have this text: #INCLUDE# when you click on the the text field pops in BUT the content is suddently different.. the content now is: but i want it to be : #INCLUDE# any idea how i can get this done? thanx alot