L
L
la_baba2016-08-08 13:07:30
JavaScript
la_baba, 2016-08-08 13:07:30

Is it possible to change the matrix on a laptop from 1366*768 to 1920*1080?

I have a Packard Bell EasyNote Ts11 laptop with a resolution of 1366*768.
I am completely satisfied with the performance, I want to replace the matrix with another extension.
AIDA64 gives the following monitor parameters Monitor
name AU Optronics B156XW02 V6
Which ones will be compatible with it?
on the site _ remontof.net/article/tablitca-sovmestimosti-matrit... there are compatibility tables, but they are similar in resolution, if we take for example this B156HW02 V.5, will it work?
the pins match the backlight too, what else to look for?

Answer the question

In order to leave comments, you need to log in

3 answer(s)
D
Denis, 2016-04-10
@allishappy

forEach operates on an array, and you have a collection of nodes (NodeList ). And I advise you to use not getElementsByClassName, but querySelector/querySelectorAll. Still, cross-browser, and more convenient when the selector is complex.

var dependent = document.querySelectorAll('.dep');
[].forEach.call(dependent, function(item, i, arr) {
    alert(i + ": " + item + " (массив:" + arr + ")");
});
Option two - convert the NodeList into an array and work with it accordingly:
var dependent = [].slice.call(document.querySelectorAll('.dep'));
dependent.forEach(function(item, i, arr) {
    alert(i + ": " + item + " (массив:" + arr + ")");
});

R
Ruslan Ganeev, 2016-08-08
@GaneevRR

Why didn't you ask the question here ? Here they will tell you for sure.

E
Evgeny Ferapontov, 2016-08-08
@e1ferapontov

Connector pinout, dimensions (do not forget about the thickness), the location of the fasteners. That's all you need to know to answer your question.
The model of the matrix and its version can be viewed directly on the matrix itself.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question