[jQuery] How to get the float direction of an element?

2009-12-18 Thread ximo wallas
Hi there, does anybody knows how to get the float direction of an element? If I do this: $(this).attr('style') I will get all the styles, but I just want to get right or left... Can anybody bring me some light?

Re: [jQuery] Random problems with load()?????

2009-12-11 Thread ximo wallas
The NET tab doesn't return anything... It doesn't work, or it works only sometimes, for aparently no reason. --- On Wed, 12/9/09, Juan Ignacio Borda juanignaciobo...@gmail.com wrote: From: Juan Ignacio Borda juanignaciobo...@gmail.com Subject: Re: [jQuery] Random problems with load()? To:

[jQuery] Random problems with load()?????

2009-12-09 Thread ximo wallas
Hello everyone! I'm using load() to get some php content in ti a div, the PHP has a long switch() conditional that brings back contents depending on var received, it works fine, almost all the time... Sometimes, the load function doesn't load anything, there's a callback function for the load

[jQuery] Problem traversing up list

2009-11-27 Thread ximo wallas
Hello there, after too much sarching I have almost give it up with the following. I have a list with another list nested: ul     li id=item1Item 1   ul     li id=item1-1   Item 1 - 1     /li     li id=item1-2   Item 1 - 2     /li   /ul     /li /ul Let's

Re: [jQuery] Problem traversing up list

2009-11-27 Thread ximo wallas
() (vanilla DOM) but .parent() (jQuery flavor). Then you can access any attribute using .attr(). So instead try : $('#item1-1').parent().attr('id') This should tadaaa. Michel Belleville 2009/11/27 ximo wallas igguan...@yahoo.com Hello there, after too much sarching I have almost give it up

[jQuery] Selecting all checked checkboxes: nothing seems to work

2009-11-17 Thread ximo wallas
I'm using this selector: $('[name^=item]').map(function() { }); To access a group of checkboxes with names like: item[1], item[2], item[3], item[4] It works fine, but when trying to access only the selected ones, I can't find the way... $('[name^=item]:checked').map(function() { }); This doesn't

[jQuery] load() and utf-8 encoding, nothing seems to work...

2009-11-04 Thread ximo wallas
I've been googling around but found no answer that works for me. I'm loading some content from a PHP script using the load() function inside an html document that already has the utf-8 encoding meta tag. I suposed that the rule at the head of the container document will affect all loaded

[jQuery] Cant' read XML with IE 8

2009-09-28 Thread ximo wallas
I'm reading the contents of an XML perfectly with FF but IE doesn't load the contents of the XML, everything seems to be ok, can somebody tell me what's wrong?    var xml = $.ajax(         {             type: GET,             url: xmlFile,             dataType: xml,             success:

[jQuery] Problem controlling links of appended html

2009-09-26 Thread ximo wallas
Hi there, I'm appending some divs with a thumbnail to an existing div called main_area and i would like to take controll of the appended links, but I can't. I have tried this: $(#main_area).append(div class=picsa href=pics/1.jpgimg src=pics/1_thumb.jpg width=100px height=100px/a/div,

[jQuery] Problem loading flash movie inside div

2009-09-16 Thread ximo wallas
Hello, I have a div that already contains a flash movie and some code that adobe flash needs to display the movie: /// div id=mydiv !--url's used in the movie-- !--text used in the movie-- !-- p align=left/p p align=center/p -- !-- saved from url=(0013)about:internet

[jQuery] Very disappointed with jquery and iframe communication

2009-09-15 Thread ximo wallas
After 1 day googling and trying I find no agreement in a solid method for comunicating with iframe, this is the nearest point I've been to get in touch with IFRAME: $(frames['Theiframe']).ready( function () {     alert('Frame is loaded'); }); This will alert the message, but any attempt to

[jQuery] Re: Very disappointed with jquery and iframe communication

2009-09-15 Thread ximo wallas
It is firing the alert, you think it is not? How can I access it and have some control over?

[jQuery] Re: Very disappointed with jquery and iframe communication

2009-09-15 Thread ximo wallas
, use $(frames['Theiframe']).get(0).contentWindow.$('#login') BTW, you can access child dom only if in same domain Paolo On Tue, Sep 15, 2009 at 10:53 AM, ximo wallas igguan...@yahoo.com wrote: After 1 day googling and trying I find no agreement in a solid method for comunicating with iframe

[jQuery] detecting events on iframe: reload

2009-09-14 Thread ximo wallas
Can I detect somehow if a content has been loaded in an iframe? I'm not talking about the first loading of the iframe, but afterwords. I have a flash movie inside an iframe and this flash movie loads a document in the iframe when a button is clicked, all I want is the main page to detect when

[jQuery] iframe accesing main document functions?

2009-09-14 Thread ximo wallas
Is this possible? Been trying but doesn't seem to work...

[jQuery] Getting value from fields that compose an array?

2009-09-11 Thread ximo wallas
Hello! I have a form with some fields like this: input type=text name=item[] id=item[1] / input type=text name=item[] id=item[2] / input type=text name=item[] id=item[3] / input type=text name=item[] id=item[4] / How can I retriev the values with jquery? I'm using this:

[jQuery] Loading external text in to a text area?

2009-09-07 Thread ximo wallas
Hello, I would like to know if I can load a small text from a external source into a textarea. the external source is a php that will write some clean text depending on the vars received. I know load() can do the job for a div but I don't think it will work for a textarea.

[jQuery] Getting XML info problem

2009-08-25 Thread ximo wallas
I find it really sad that jquery doesn't have a oficial forum out there... My question is posted in this one, I can't post it here cause the HTML inside will blow the e-mail: http://www.jqueryhelp.com/viewtopic.php?t=3616 Can somebody help me with this, I'm really stuck...