$('.wrapper').height = '1000px';
and that will not work, because we don't have $('.wrapper') in working
what should I do, to accomplish the desirable result?
$('.wrapper').css('height', '1000px');
Maurício
Try:
$('.wrapper').height(1000);
On Apr 1, 2:49 pm, gryzzly wrote:
> Hello.
> Let's say I have
> $(document).ready(function() {
> $('.niceImage, .hiddenText').wrapAll(' div>');});
>
> then I want to access newly inserted to the DOM div with class wrapper
> and do something with it;
> $(docum
Josh,
>> When you POST something to script this script should echo back content
>of
>> the div. Is your script echoing back extra newline.
>
>This is what was happening. I am using ColdFusion for the backend and I
>had
>to set to get rid of the extra junk.
Depending on your version of ColdFus
When you POST something to script this script should echo back content of
the div. Is your script echoing back extra newline.
This is what was happening. I am using ColdFusion for the backend and I had
to set to get rid of the extra junk.
-- Josh
On Apr 24, 2007, at 3:04 AM, Josh Nathanson wrote:
I am having trouble with jEditable/textarea that seems to be
related to your issue. When I do a POST, and the textarea kicks
back to the div, a space and two newlines are being inserted in the
DOM in my div. If I go and re-edit the text
figured it out: I had ' ' between empty div's that get filled after the
page loads and those were the culprits.
I don't remember why I put those there, but I thought it was because the
browsers don't like empty div's. Anyone know anything about this?
- Original Message
From: Ariel Jak
I am experiencing spacing issues with my divs that is apparently fixed
when I delete white space between DIV's using firebug.
I am having trouble with jEditable/textarea that seems to be related to your
issue. When I do a POST, and the textarea kicks back to the div, a space
and two newline
7 matches
Mail list logo