AMP Validato error: attribute '[expanded]' may not appear in tag 'amp-accordion > section'AMP: amp-accordion not workingAMP validation error: The attribute 'cite' may not appear in tag 'q'The attribute 'target' may not appear in tag 'button'AMP: The tag 'amp-social-share' may not appear as a descendant of tag 'amp-sidebar'. Why?Need a fix… The attribute 'width' may not appear in tag 'col' for AMP HTMLAll AMP accordions expanded on reloadAmp- iframe in amp Lightbox or amp-accordionThe attribute 'http' may not appear in tag 'meta name= and content=' on AMP pageDynamic data-vars for analytics event tracking
Put the phone down / Put down the phone
Is this saw blade faulty?
Do people actually use the word "kaputt" in conversation?
Comic-book: Kids find a dead female superhero in the woods
Center page as a whole without centering each element individually
1 John in Luther’s Bibel
Did I make a mistake by ccing email to boss to others?
What should be the ideal length of sentences in a blog post for ease of reading?
Why can't I get pgrep output right to variable on bash script?
How do you say "Trust your struggle." in French?
Calculate Pi using Monte Carlo
Are hand made posters acceptable in Academia?
PTIJ: Which Dr. Seuss books should one obtain?
How to get directions in deep space?
If the Dominion rule using their Jem'Hadar troops, why is their life expectancy so low?
What properties make a magic weapon befit a Rogue more than a DEX-based Fighter?
"Marked down as someone wanting to sell shares." What does that mean?
In the event of Brexit being postponed beyond the EU elections, will UK voters in EU countries be eligible to participate?
Asserting that Atheism and Theism are both faith based positions
Highest stage count that are used one right after the other?
Travelling in US for more than 90 days
Do I have to take mana from my deck or hand when tapping this card?
Weird lines in Microsoft Word
Has the laser at Magurele, Romania reached the tenth of the Sun power?
AMP Validato error: attribute '[expanded]' may not appear in tag 'amp-accordion > section'
AMP: amp-accordion not workingAMP validation error: The attribute 'cite' may not appear in tag 'q'The attribute 'target' may not appear in tag 'button'AMP: The tag 'amp-social-share' may not appear as a descendant of tag 'amp-sidebar'. Why?Need a fix… The attribute 'width' may not appear in tag 'col' for AMP HTMLAll AMP accordions expanded on reloadAmp- iframe in amp Lightbox or amp-accordionThe attribute 'http' may not appear in tag 'meta name= and content=' on AMP pageDynamic data-vars for analytics event tracking
I want to dinamically open/close an accordion's section based on the value of a property in the state.
This is my test:
<amp-accordion animate>
<section id="section_A" [expanded]="true">
<h3>Canion</h3>
<div>
<p>Lorem ipsum dolor est</p>
</div>
</section>
<section id="section_B" [expanded]="false">
<h3>Canion</h3>
<div>
<p>Lorem ipsum dolor est</p>
</div>
</section>
</amp-accordion>
I get this error
attribute '[expanded]' may not appear in tag 'amp-accordion > section
Weird thing is that the expanded attribute looks like a valid property of section.
This passes the AMP validation:
<amp-accordion animate>
<section id="section_A" expanded>
<h3>Canion</h3>
<div>
<p>Lorem ipsum dolor est</p>
</div>
</section>
<section id="section_B" expanded>
<h3>Canion</h3>
<div>
<p>Lorem ipsum dolor est</p>
</div>
</section>
</amp-accordion>
amp-html
add a comment |
I want to dinamically open/close an accordion's section based on the value of a property in the state.
This is my test:
<amp-accordion animate>
<section id="section_A" [expanded]="true">
<h3>Canion</h3>
<div>
<p>Lorem ipsum dolor est</p>
</div>
</section>
<section id="section_B" [expanded]="false">
<h3>Canion</h3>
<div>
<p>Lorem ipsum dolor est</p>
</div>
</section>
</amp-accordion>
I get this error
attribute '[expanded]' may not appear in tag 'amp-accordion > section
Weird thing is that the expanded attribute looks like a valid property of section.
This passes the AMP validation:
<amp-accordion animate>
<section id="section_A" expanded>
<h3>Canion</h3>
<div>
<p>Lorem ipsum dolor est</p>
</div>
</section>
<section id="section_B" expanded>
<h3>Canion</h3>
<div>
<p>Lorem ipsum dolor est</p>
</div>
</section>
</amp-accordion>
amp-html
What exactly is your question? Amp doesn't allow[expanded]in the<amp-accordion>section and you got it to work properly when followed by AMP's rules.If you want them to be in collapse state when the page first load then removeexpanded
– V.Le
Mar 7 at 20:30
I want to dinamically open/close the sections based on the value of a property in the state
– Iván Quiñones
Mar 7 at 20:42
@IvánQuiñones AMP does not evaluate expressions on page load
– Bachcha Singh
Mar 11 at 6:45
add a comment |
I want to dinamically open/close an accordion's section based on the value of a property in the state.
This is my test:
<amp-accordion animate>
<section id="section_A" [expanded]="true">
<h3>Canion</h3>
<div>
<p>Lorem ipsum dolor est</p>
</div>
</section>
<section id="section_B" [expanded]="false">
<h3>Canion</h3>
<div>
<p>Lorem ipsum dolor est</p>
</div>
</section>
</amp-accordion>
I get this error
attribute '[expanded]' may not appear in tag 'amp-accordion > section
Weird thing is that the expanded attribute looks like a valid property of section.
This passes the AMP validation:
<amp-accordion animate>
<section id="section_A" expanded>
<h3>Canion</h3>
<div>
<p>Lorem ipsum dolor est</p>
</div>
</section>
<section id="section_B" expanded>
<h3>Canion</h3>
<div>
<p>Lorem ipsum dolor est</p>
</div>
</section>
</amp-accordion>
amp-html
I want to dinamically open/close an accordion's section based on the value of a property in the state.
This is my test:
<amp-accordion animate>
<section id="section_A" [expanded]="true">
<h3>Canion</h3>
<div>
<p>Lorem ipsum dolor est</p>
</div>
</section>
<section id="section_B" [expanded]="false">
<h3>Canion</h3>
<div>
<p>Lorem ipsum dolor est</p>
</div>
</section>
</amp-accordion>
I get this error
attribute '[expanded]' may not appear in tag 'amp-accordion > section
Weird thing is that the expanded attribute looks like a valid property of section.
This passes the AMP validation:
<amp-accordion animate>
<section id="section_A" expanded>
<h3>Canion</h3>
<div>
<p>Lorem ipsum dolor est</p>
</div>
</section>
<section id="section_B" expanded>
<h3>Canion</h3>
<div>
<p>Lorem ipsum dolor est</p>
</div>
</section>
</amp-accordion>
amp-html
amp-html
edited Mar 7 at 20:43
Iván Quiñones
asked Mar 7 at 20:08
Iván QuiñonesIván Quiñones
253310
253310
What exactly is your question? Amp doesn't allow[expanded]in the<amp-accordion>section and you got it to work properly when followed by AMP's rules.If you want them to be in collapse state when the page first load then removeexpanded
– V.Le
Mar 7 at 20:30
I want to dinamically open/close the sections based on the value of a property in the state
– Iván Quiñones
Mar 7 at 20:42
@IvánQuiñones AMP does not evaluate expressions on page load
– Bachcha Singh
Mar 11 at 6:45
add a comment |
What exactly is your question? Amp doesn't allow[expanded]in the<amp-accordion>section and you got it to work properly when followed by AMP's rules.If you want them to be in collapse state when the page first load then removeexpanded
– V.Le
Mar 7 at 20:30
I want to dinamically open/close the sections based on the value of a property in the state
– Iván Quiñones
Mar 7 at 20:42
@IvánQuiñones AMP does not evaluate expressions on page load
– Bachcha Singh
Mar 11 at 6:45
What exactly is your question? Amp doesn't allow
[expanded] in the <amp-accordion> section and you got it to work properly when followed by AMP's rules.If you want them to be in collapse state when the page first load then remove expanded– V.Le
Mar 7 at 20:30
What exactly is your question? Amp doesn't allow
[expanded] in the <amp-accordion> section and you got it to work properly when followed by AMP's rules.If you want them to be in collapse state when the page first load then remove expanded– V.Le
Mar 7 at 20:30
I want to dinamically open/close the sections based on the value of a property in the state
– Iván Quiñones
Mar 7 at 20:42
I want to dinamically open/close the sections based on the value of a property in the state
– Iván Quiñones
Mar 7 at 20:42
@IvánQuiñones AMP does not evaluate expressions on page load
– Bachcha Singh
Mar 11 at 6:45
@IvánQuiñones AMP does not evaluate expressions on page load
– Bachcha Singh
Mar 11 at 6:45
add a comment |
0
active
oldest
votes
Your Answer
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%2f55052035%2famp-validato-error-attribute-expanded-may-not-appear-in-tag-amp-accordion%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%2f55052035%2famp-validato-error-attribute-expanded-may-not-appear-in-tag-amp-accordion%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
What exactly is your question? Amp doesn't allow
[expanded]in the<amp-accordion>section and you got it to work properly when followed by AMP's rules.If you want them to be in collapse state when the page first load then removeexpanded– V.Le
Mar 7 at 20:30
I want to dinamically open/close the sections based on the value of a property in the state
– Iván Quiñones
Mar 7 at 20:42
@IvánQuiñones AMP does not evaluate expressions on page load
– Bachcha Singh
Mar 11 at 6:45