Hello:
I'm setting abs position doing this:
$('#mydiv').css({position:absolute, top:100, left:100});
Everything work fine, but if #mydiv has an element (#my_internal_div)
which use absolute position, it add #mydiv top and left.
Hello:
I'm trying to move content from div A to div B without execute the
scripts inside A.
Move it is the easy part:
var d = $('#B')[0];
$('#A > *').each(function(){
if(this.tagName.toUpperCase()!=='SCRIPT'){
d.appendChild(this);
}
On 25 sep, 13:13, Bertilo Wennergren wrote:
> MartinBorthiry wrote:
> > I'm trying to do this:
>
> > $(document).resize(function(){alert('yea')});
>
> > but doesn't work on firefox or chrome, only work fine on IE (WTF!)
>
> &
hello:
I'm trying to do this:
$(document).resize(function(){alert('yea')});
but doesn't work on firefox or chrome, only work fine on IE (WTF!)
I'd tryied $('body').resize... but happen the same.
$(window).resize work fine but i need to detect when the body's
height has been changed by
Hello:
I wrote a simple script based on jquery to load images onscroll
event. It is very easy.
http://code.google.com/p/jquery-images-ondemand/
enjoy
On 10 ago, 16:49, "Dan G. Switzer, II"
wrote:
> You can add a class to your field when it has focus and then check for the
> class:
> $(":input")
> // add focus/blur events
> .focus(function (){
> $(this).addClass("has-focus");})
>
> .blur(function (){
> $(this).removeClass("has-focus");
>
> })
Hello:
I'm trying to know if an input has focus. Is that possible using
jquery?
samething like this:
$('input#1').has_focus()
On 23 mar, 16:10, MartinBorthiry wrote:
> Hello:
> I'm using the validation plugin on my site to make remote
> validations, and it is working graet!
> But, I note that the ajax call is made allways. I think that that
> call only has to be done when the input value
Hello:
I'm using the validation plugin on my site to make remote
validations, and it is working graet!
But, I note that the ajax call is made allways. I think that that
call only has to be done when the input value has changed. Has no
sense to validate a value which has not changed.
It is po
9 matches
Mail list logo