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













0















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>









share|improve this question
























  • 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











  • @IvánQuiñones AMP does not evaluate expressions on page load

    – Bachcha Singh
    Mar 11 at 6:45















0















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>









share|improve this question
























  • 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











  • @IvánQuiñones AMP does not evaluate expressions on page load

    – Bachcha Singh
    Mar 11 at 6:45













0












0








0








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>









share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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 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











  • @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












  • 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












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
);



);













draft saved

draft discarded


















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















draft saved

draft discarded
















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

How to get text form Clipboard with JavaScript in Firefox 56?How to validate an email address in JavaScript?How do JavaScript closures work?How do I remove a property from a JavaScript object?How do you get a timestamp in JavaScript?How do I copy to the clipboard in JavaScript?How do I include a JavaScript file in another JavaScript file?Get the current URL with JavaScript?How to replace all occurrences of a string in JavaScriptHow to check whether a string contains a substring in JavaScript?How do I remove a particular element from an array in JavaScript?

Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

List of MPs elected to the English parliament in 1640 (April) Contents List of constituencies and members See also Notes References Navigation menueNational Archives – The Glynde Place ArchivesCobbett's Parliamentary history of England, from the Norman Conquest in 1066 to the year 1803'Aldermen in Parliament', The Aldermen of the City of London: Temp. Henry III – 1912onepage&q&f&#61, false 229