Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: [OT?] formatting response text for AJAX widget

by jfluhmann (Scribe)
on Aug 04, 2006 at 19:35 UTC ( [id://565732]=note: print w/replies, xml ) Need Help??


in reply to [OT?] formatting response text for AJAX widget

What about trying a different approach using JSON:
print qq{ {"componentId": "$componentId", "html": "<a href='#' onClick='javascript:makeForm( \"$componentId\", +\"$componentType\", \"$newTitle\");'>$newTitle</a>"} };
Inside your JavaScript, use:
jsonText = eval( '(' request.responseText ')' ); $('override_' + jsonText.componentId).innerHTML = jsonText.html;

Replies are listed 'Best First'.
Re^2: [OT?] formatting response text for AJAX widget
by geektron (Curate) on Aug 04, 2006 at 19:46 UTC
    I haven't read up enough on JSON to use it, so for now, the nasty extra escapes will have to do.

    Regardless, thanks for the suggestion.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://565732]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (3)
As of 2024-03-28 13:13 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found