2

I'm trying to find a equivalent to jQuery.css() method

In my specific case, I want to set a background image for a canvas.

in jQuery, it would be:

 $("#canvas").css("background-image", "url(./assets/gridPattern.png)");

1 Answer 1

6

It is possible to acess CSS properties via the style attribute in Element

query("#canvas").style.backgroundImage = "url(./assets/gridPattern.png)";
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.