get calculated scrollY and height of container element The Next CEO of Stack OverflowHow do I detect a click outside an element?How do I check if an element is hidden in jQuery?How do you get a timestamp in JavaScript?Creating a div element in jQueryGet the current URL with JavaScript?How to move an element into another element?How to make a div 100% height of the browser window?How to check whether a string contains a substring in JavaScript?How do I remove a particular element from an array in JavaScript?jQuery scroll to element
Can you teleport closer to a creature you are Frightened of?
Compilation of a 2d array and a 1d array
Is the offspring between a demon and a celestial possible? If so what is it called and is it in a book somewhere?
Direct Implications Between USA and UK in Event of No-Deal Brexit
Is it reasonable to ask other researchers to send me their previous grant applications?
Strange use of "whether ... than ..." in official text
Are British MPs missing the point, with these 'Indicative Votes'?
Car headlights in a world without electricity
Man transported from Alternate World into ours by a Neutrino Detector
Create custom note boxes
Masking layers by a vector polygon layer in QGIS
What steps are necessary to read a Modern SSD in Medieval Europe?
Does Germany produce more waste than the US?
Free fall ellipse or parabola?
Is a distribution that is normal, but highly skewed, considered Gaussian?
Airship steam engine room - problems and conflict
Planeswalker Ability and Death Timing
How can I prove that a state of equilibrium is unstable?
Why did the Drakh emissary look so blurred in S04:E11 "Lines of Communication"?
Why do we say “un seul M” and not “une seule M” even though M is a “consonne”?
Shortening a title without changing its meaning
How to show a landlord what we have in savings?
What difference does it make matching a word with/without a trailing whitespace?
Can I cast Thunderwave and be at the center of its bottom face, but not be affected by it?
get calculated scrollY and height of container element
The Next CEO of Stack OverflowHow do I detect a click outside an element?How do I check if an element is hidden in jQuery?How do you get a timestamp in JavaScript?Creating a div element in jQueryGet the current URL with JavaScript?How to move an element into another element?How to make a div 100% height of the browser window?How to check whether a string contains a substring in JavaScript?How do I remove a particular element from an array in JavaScript?jQuery scroll to element
In Angular JS 1.6 (I know it's old— Legacy software), I want to simulate infinite product scrolling. If the user scrolls to the bottom of all the products listed, the next pagination API is called and the elements are appended to the products array.
NOTE: the div I'm trying to perform these calculations on is a directive template element
TL;DR: Two questions:
1) I need the calculated height
of the container element
2) I need the scrollY
of the container element, NOT of the $window
Checking if the user scrolled to last row of products displayed should be calculated by:
1) getting height of container element containing all products (let's call the container element .products-container
)
2) Check if $(.products-container).scrollY
> $(.products-container).height
Unfortunately, I cannot seem to get the scrollY
or height
of $(.products-container)
as its height is calculated by the number of elements inside.
So I've been forced to calculate height of $(.products-container)
as a sum of the heights of rows of elements inside it:
1) getting height of an individual product element (300px)
2) getting number of rows of products (3 products per row)
3) getting proxy height of container element containing all products (let's call the container element .products-container
) as a sum from all the product element rows inside it
4) Check if $window.scrollY
> numberOfRows * productElementHeight
let productElement = $('.product-item');
let productElementHeight = productElement.height();
let numberOfRows = Math.ceil(scope.products.length/productsDisplayedPerRow);
let heightOfPageToLastElement = numberOfRows * productElementHeight;
if (newScrollHeight > heightOfPageToLastElement)
// append next set of product results
The problems are:
1) The height
of a calculated container element is always 0
2) I only seem to be able to get the scrollY
of the window:
$scope.$watch(function ()
return $window.scrollY;
, function (scrollY)
$rootScope.scrollHeight = scrollY;
);
scrollY
targeting a calculated container element is always 0
.
Note: $('.products-container').height()
, document.getElementById('#products-container').clientHeight
, etc all yield 0
,
javascript html angular angular1.6
add a comment |
In Angular JS 1.6 (I know it's old— Legacy software), I want to simulate infinite product scrolling. If the user scrolls to the bottom of all the products listed, the next pagination API is called and the elements are appended to the products array.
NOTE: the div I'm trying to perform these calculations on is a directive template element
TL;DR: Two questions:
1) I need the calculated height
of the container element
2) I need the scrollY
of the container element, NOT of the $window
Checking if the user scrolled to last row of products displayed should be calculated by:
1) getting height of container element containing all products (let's call the container element .products-container
)
2) Check if $(.products-container).scrollY
> $(.products-container).height
Unfortunately, I cannot seem to get the scrollY
or height
of $(.products-container)
as its height is calculated by the number of elements inside.
So I've been forced to calculate height of $(.products-container)
as a sum of the heights of rows of elements inside it:
1) getting height of an individual product element (300px)
2) getting number of rows of products (3 products per row)
3) getting proxy height of container element containing all products (let's call the container element .products-container
) as a sum from all the product element rows inside it
4) Check if $window.scrollY
> numberOfRows * productElementHeight
let productElement = $('.product-item');
let productElementHeight = productElement.height();
let numberOfRows = Math.ceil(scope.products.length/productsDisplayedPerRow);
let heightOfPageToLastElement = numberOfRows * productElementHeight;
if (newScrollHeight > heightOfPageToLastElement)
// append next set of product results
The problems are:
1) The height
of a calculated container element is always 0
2) I only seem to be able to get the scrollY
of the window:
$scope.$watch(function ()
return $window.scrollY;
, function (scrollY)
$rootScope.scrollHeight = scrollY;
);
scrollY
targeting a calculated container element is always 0
.
Note: $('.products-container').height()
, document.getElementById('#products-container').clientHeight
, etc all yield 0
,
javascript html angular angular1.6
can you put your html structure? are you floating elements inside your container ?
– Wasef Anabtawi
yesterday
add a comment |
In Angular JS 1.6 (I know it's old— Legacy software), I want to simulate infinite product scrolling. If the user scrolls to the bottom of all the products listed, the next pagination API is called and the elements are appended to the products array.
NOTE: the div I'm trying to perform these calculations on is a directive template element
TL;DR: Two questions:
1) I need the calculated height
of the container element
2) I need the scrollY
of the container element, NOT of the $window
Checking if the user scrolled to last row of products displayed should be calculated by:
1) getting height of container element containing all products (let's call the container element .products-container
)
2) Check if $(.products-container).scrollY
> $(.products-container).height
Unfortunately, I cannot seem to get the scrollY
or height
of $(.products-container)
as its height is calculated by the number of elements inside.
So I've been forced to calculate height of $(.products-container)
as a sum of the heights of rows of elements inside it:
1) getting height of an individual product element (300px)
2) getting number of rows of products (3 products per row)
3) getting proxy height of container element containing all products (let's call the container element .products-container
) as a sum from all the product element rows inside it
4) Check if $window.scrollY
> numberOfRows * productElementHeight
let productElement = $('.product-item');
let productElementHeight = productElement.height();
let numberOfRows = Math.ceil(scope.products.length/productsDisplayedPerRow);
let heightOfPageToLastElement = numberOfRows * productElementHeight;
if (newScrollHeight > heightOfPageToLastElement)
// append next set of product results
The problems are:
1) The height
of a calculated container element is always 0
2) I only seem to be able to get the scrollY
of the window:
$scope.$watch(function ()
return $window.scrollY;
, function (scrollY)
$rootScope.scrollHeight = scrollY;
);
scrollY
targeting a calculated container element is always 0
.
Note: $('.products-container').height()
, document.getElementById('#products-container').clientHeight
, etc all yield 0
,
javascript html angular angular1.6
In Angular JS 1.6 (I know it's old— Legacy software), I want to simulate infinite product scrolling. If the user scrolls to the bottom of all the products listed, the next pagination API is called and the elements are appended to the products array.
NOTE: the div I'm trying to perform these calculations on is a directive template element
TL;DR: Two questions:
1) I need the calculated height
of the container element
2) I need the scrollY
of the container element, NOT of the $window
Checking if the user scrolled to last row of products displayed should be calculated by:
1) getting height of container element containing all products (let's call the container element .products-container
)
2) Check if $(.products-container).scrollY
> $(.products-container).height
Unfortunately, I cannot seem to get the scrollY
or height
of $(.products-container)
as its height is calculated by the number of elements inside.
So I've been forced to calculate height of $(.products-container)
as a sum of the heights of rows of elements inside it:
1) getting height of an individual product element (300px)
2) getting number of rows of products (3 products per row)
3) getting proxy height of container element containing all products (let's call the container element .products-container
) as a sum from all the product element rows inside it
4) Check if $window.scrollY
> numberOfRows * productElementHeight
let productElement = $('.product-item');
let productElementHeight = productElement.height();
let numberOfRows = Math.ceil(scope.products.length/productsDisplayedPerRow);
let heightOfPageToLastElement = numberOfRows * productElementHeight;
if (newScrollHeight > heightOfPageToLastElement)
// append next set of product results
The problems are:
1) The height
of a calculated container element is always 0
2) I only seem to be able to get the scrollY
of the window:
$scope.$watch(function ()
return $window.scrollY;
, function (scrollY)
$rootScope.scrollHeight = scrollY;
);
scrollY
targeting a calculated container element is always 0
.
Note: $('.products-container').height()
, document.getElementById('#products-container').clientHeight
, etc all yield 0
,
javascript html angular angular1.6
javascript html angular angular1.6
edited Mar 21 at 21:31
Growler
asked Mar 21 at 19:52
GrowlerGrowler
4,8831267161
4,8831267161
can you put your html structure? are you floating elements inside your container ?
– Wasef Anabtawi
yesterday
add a comment |
can you put your html structure? are you floating elements inside your container ?
– Wasef Anabtawi
yesterday
can you put your html structure? are you floating elements inside your container ?
– Wasef Anabtawi
yesterday
can you put your html structure? are you floating elements inside your container ?
– Wasef Anabtawi
yesterday
add a comment |
0
active
oldest
votes
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55288304%2fget-calculated-scrolly-and-height-of-container-element%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55288304%2fget-calculated-scrolly-and-height-of-container-element%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
can you put your html structure? are you floating elements inside your container ?
– Wasef Anabtawi
yesterday