Hi,
Are you supposed to be able to use jquery to search for non-html
elements? I've got a web-app that is sending out xrefs which are
recursively expanded by jquery using the following function.
function expand_refs (context) {
$("xref",context||document).each(function (i) {
var rpl = cac
On Jun 1, 9:01 am, Wizzud <[EMAIL PROTECTED]> wrote:
> Untested...
>
> function expand_refs (context) {
> $("xref",context||document).each(function (i) {
> var rpl = defs[$(this).attr("ref")]||0;
> if(rpl){
> var cntxt = $(rpl).insertAfter(this);
> $(this).remove();
Hi,
I'm generating some code that looks like the snippet below. Embedded
within the html are some elements. I want to expand each one
according to the corresponding property of the defs object.
My naive attempt is as follows
function expand_refs () {
$("xref").each(function (i) {
$
On Apr 10, 11:24 pm, sleepwalker <[EMAIL PROTECTED]> wrote:
> Is there a way in jquery to find your exact location in the dom and
> then move down from that location to another element? For example can
> I get the value of a input[text].someClass after changing it and write
> that change only to t
Hi,
I am writing a server program that updates a page according to the
current state on the server by sending down jquery commands to be
evaluated.
http://gitorious.org/projects/hunchncells
At the moment, the server is generating strings like this...
$("s").html("
");
These are failing, I t
5 matches
Mail list logo