I am trying through jquery to change the background images position of an element depending on resolution. The code:

var pwwidth = $(window).width();
var pwheight =  $(window).height();
var bg1posx = pwwidth - $('h1.portofolio').width();
var bg1posy = pwheight - $('.footer').height();
var bg2posx = $('.leftporto').width() - (pwwidth * 0.05);
var bg2posy = ($('h1.portofolio').height() / 2 ) + $('h1.portofolio').css('margin-top').replace('px', '');
$('#content4').css('background-position', bg1posx+'px' bg1posy+'px', bg2posx+'px' bg2posy+'px');

In CSS you change multiple backgrounds of an element like this:

background-position: 100px 200px , 300px 400px;
background-position: 10% 20% , 30% 40%;

I cannot define it to change with jquery as this will not work

$('#content4').css('background-position', bg1posx+'px' bg1posy+'px', bg2posx+'px' bg2posy+'px');
link|improve this question

50% accept rate
feedback

1 Answer

up vote 0 down vote accepted

You have a syntax error (improper concatenation of strings) in your code:

Bad:

$('#content4').css('background-position', bg1posx+'px' bg1posy+'px', bg2posx+'px' bg2posy+'px');

Good:

$('#content4').css('background-position', bg1posx+'px '+bg1posy+'px, '+bg2posx+'px '+bg2posy+'px');​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​

link|improve this answer
I tried this and it creates another error for me. It says my functions that are called on window.resize and document.ready are not defined. As soon as I comment out the line you corrected the errors dissapear. Any reason? – Chris Feb 19 at 18:16
Can you please post the full JS and HTML code as well? It would be much easier to help. – papaiatis Feb 19 at 18:36
should I post my code as an answer or should I put everything online regardless that it stops working? – Chris Feb 19 at 18:41
ok my mistake one of the characters wasnt being recognised but still it only affects background image 1 and not 2 so it adds element.style{background-position:bg1posx bg1posy} For bakcground 2 the values dissapear. – Chris Feb 19 at 18:47
thanks for the help because I copy pasted the syntax it was causing me errors. Works now thanks – Chris Feb 19 at 18:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.