onclick="document.getElementById('showme')How to validate Required fields before onclick review.save when submit buttonHow to give onclick event for admin grid action link
Why did I get only 5 points even though I won?
Is this curved text blend possible in Illustrator?
PhD advisor lost funding, need advice
How far did Gandalf and the Balrog drop from the bridge in Moria?
how do companies get money from being listed publicly
What is this 1990s horror game of otherworldly PCs dealing with monsters on modern Earth?
Collinear Galois conjugates
Is there a command to install basic applications on Ubuntu 16.04?
Why aren't rainbows blurred-out into nothing after they are produced?
Is there a SQL/english like language that lets you define formulations given some data?
Heat equation: Squiggly lines
Is it okay for a ticket seller in the USA to refuse to give you your change, keep it for themselves and claim it's a tip?
How does "Te vas a cansar" mean "You're going to get tired"?
Graphs for which a calculus student can reasonably compute the arclength
How to remove ambiguity: "... lives in the city of H, the capital of the province of NS, WHERE the unemployment rate is ..."?
U.S. Jurisdiction over Virgin Islands
Do beef farmed pastures net remove carbon emissions?
What are these funnel-looking green things in my yard?
Can "être sur" mean "to be about" ?
Why command hierarchy, if the chain of command is standing next to each other?
Safest way to store environment variable value in a file
What should I call bands of armed men in the Middle Ages?
Can the ground attached to neutral fool a receptacle tester?
Markov-chain sentence generator in Python
onclick="document.getElementById('showme')
How to validate Required fields before onclick review.save when submit buttonHow to give onclick event for admin grid action link
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am trying to make this work in Magento, but Magento changes the html and my boss hates it when I want to change anything using cPanel. So I need an option using the dashboard in Magento
<table width="100%">
<tbody>
<tr>
<td>Stock replacement: Bolt in press on bearing</td>
</tr>
<tr>
<td><a href="#" onclick="document.getElementById('showme').style.display = 'table-row'; return false;"><li>How To Measure</li></a></td>
</tr>
<tr id="showme" style="display: none">
<td><embed src="https://dutchmanaxles.com/images/ordering/SR_defined_POB.pdf" type="application/pdf" width="100%" height="600px" /></td>
</tr>
</tbody>
</table>
magento2.2.6 html table
add a comment |
I am trying to make this work in Magento, but Magento changes the html and my boss hates it when I want to change anything using cPanel. So I need an option using the dashboard in Magento
<table width="100%">
<tbody>
<tr>
<td>Stock replacement: Bolt in press on bearing</td>
</tr>
<tr>
<td><a href="#" onclick="document.getElementById('showme').style.display = 'table-row'; return false;"><li>How To Measure</li></a></td>
</tr>
<tr id="showme" style="display: none">
<td><embed src="https://dutchmanaxles.com/images/ordering/SR_defined_POB.pdf" type="application/pdf" width="100%" height="600px" /></td>
</tr>
</tbody>
</table>
magento2.2.6 html table
add a comment |
I am trying to make this work in Magento, but Magento changes the html and my boss hates it when I want to change anything using cPanel. So I need an option using the dashboard in Magento
<table width="100%">
<tbody>
<tr>
<td>Stock replacement: Bolt in press on bearing</td>
</tr>
<tr>
<td><a href="#" onclick="document.getElementById('showme').style.display = 'table-row'; return false;"><li>How To Measure</li></a></td>
</tr>
<tr id="showme" style="display: none">
<td><embed src="https://dutchmanaxles.com/images/ordering/SR_defined_POB.pdf" type="application/pdf" width="100%" height="600px" /></td>
</tr>
</tbody>
</table>
magento2.2.6 html table
I am trying to make this work in Magento, but Magento changes the html and my boss hates it when I want to change anything using cPanel. So I need an option using the dashboard in Magento
<table width="100%">
<tbody>
<tr>
<td>Stock replacement: Bolt in press on bearing</td>
</tr>
<tr>
<td><a href="#" onclick="document.getElementById('showme').style.display = 'table-row'; return false;"><li>How To Measure</li></a></td>
</tr>
<tr id="showme" style="display: none">
<td><embed src="https://dutchmanaxles.com/images/ordering/SR_defined_POB.pdf" type="application/pdf" width="100%" height="600px" /></td>
</tr>
</tbody>
</table>
magento2.2.6 html table
magento2.2.6 html table
edited Dec 17 '18 at 18:52
Abhishek Panchal
3,8553 gold badges10 silver badges29 bronze badges
3,8553 gold badges10 silver badges29 bronze badges
asked Dec 17 '18 at 18:14
Daniel LinnanDaniel Linnan
32 bronze badges
32 bronze badges
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
In case you are using Magento 2, I would suggest to use requireJs
<table width="100%">
<tbody>
<tr>
<td>Stock replacement: Bolt in press on bearing</td>
</tr>
<tr>
<td><a href="#" id="showEmbed"><li>How To Measure</li></a></td>
</tr>
<tr id="showme" style="display: none">
<td><embed src="https://dutchmanaxles.com/images/ordering/SR_defined_POB.pdf" type="application/pdf" width="100%" height="600px" /></td>
</tr>
</tbody>
</table>
<script type="text/javascript">
require(['jquery'],function($)
$('#showEmbed').on('click',function(e)
e.preventDefault();
$('#showme').toggle();
)
)
</script>
Ideally I would move JS content to separate JS file and initialize whole functionality via x-magento-init
script or directly bind JS functionality on element via data-mage-init
( both variants are described in Magento DevDocs: Calling and initializing JavaScript )
In case you want to just show embedded content, change jQuery toggle
function to show
That worked!! Now how can i make the window that opens up longer? right now it is only 149.6px tall? dutchmanaxles.com/contact-dutchman-axles.html is where i shoved it for now, but i cant keep it there for very long
– Daniel Linnan
Dec 18 '18 at 15:00
and i cant get it to show on properly on mobile.
– Daniel Linnan
Dec 18 '18 at 15:06
First of all, I could not find code mentioned here on link you've provided. Second of all, your problem will be connected now with HTML rendering and not Magento itself. I guess problem with displaying on mobile is, that you are using HTML tables. About height of embed element, I can't say for sure.
– Erik
Dec 18 '18 at 23:07
should i use div rather than tables? can i set it up exactly the way it is now with div?
– Daniel Linnan
Dec 19 '18 at 22:55
From my point of view yes. If you want, you can check lots of articles online which explains problems with table layouts ( i.e. this one ) But keep in mind, if you replace table layout with divs, you will have to add styling. ( divs won't look like table by default )
– Erik
Dec 20 '18 at 14:24
|
show 1 more comment
Try Below code:
<table width="100%">
<tbody>
<tr>
<td>Stock replacement: Bolt in press on bearing</td>
</tr>
<tr>
<td><button onclick="myFunction();">How To Measure</button></td>
</tr>
<tr id="showme" style="display: none">
<td><embed src="https://www.gstatic.com/webp/gallery3/1.png" width="100%" height="600px" /></td>
</tr>
</tbody>
</table>
<script>
function myFunction()
alert("Hello");
var x = document.getElementById("showme");
if (x.style.display === "none")
x.style.display = "block";
else
x.style.display = "none";
</script>
this created the botton, but it didnt work
– Daniel Linnan
Dec 18 '18 at 14:53
Check it here: jsfiddle.net/1kgscbd9
– Abhishek Panchal
Dec 18 '18 at 14:59
yeah i have the height set to 600px but page just doesn't allow it
– Daniel Linnan
Dec 18 '18 at 18:21
add a comment |
Personnally, i prefer the data-mage-init way, like described in Core.
You can use it anywhere in Magento .phtml files :
/vendor/magento/module-gift-message/view/frontend/templates/inline.phtml around line 30 :
<button class="action action-gift"
data-mage-init='"toggleAdvanced": "selectorsToggleClass":"hidden", "toggleContainers":"#allow-gift-messages-for-order-container"'>
<span><?= /* @escapeNotVerified */ __('Gift Message') ?></span>
</button>
<div id="allow-gift-messages-for-order-container" class="gift-messages-order hidden">
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2fmagento.stackexchange.com%2fquestions%2f254939%2fonclick-document-getelementbyidshowme%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
In case you are using Magento 2, I would suggest to use requireJs
<table width="100%">
<tbody>
<tr>
<td>Stock replacement: Bolt in press on bearing</td>
</tr>
<tr>
<td><a href="#" id="showEmbed"><li>How To Measure</li></a></td>
</tr>
<tr id="showme" style="display: none">
<td><embed src="https://dutchmanaxles.com/images/ordering/SR_defined_POB.pdf" type="application/pdf" width="100%" height="600px" /></td>
</tr>
</tbody>
</table>
<script type="text/javascript">
require(['jquery'],function($)
$('#showEmbed').on('click',function(e)
e.preventDefault();
$('#showme').toggle();
)
)
</script>
Ideally I would move JS content to separate JS file and initialize whole functionality via x-magento-init
script or directly bind JS functionality on element via data-mage-init
( both variants are described in Magento DevDocs: Calling and initializing JavaScript )
In case you want to just show embedded content, change jQuery toggle
function to show
That worked!! Now how can i make the window that opens up longer? right now it is only 149.6px tall? dutchmanaxles.com/contact-dutchman-axles.html is where i shoved it for now, but i cant keep it there for very long
– Daniel Linnan
Dec 18 '18 at 15:00
and i cant get it to show on properly on mobile.
– Daniel Linnan
Dec 18 '18 at 15:06
First of all, I could not find code mentioned here on link you've provided. Second of all, your problem will be connected now with HTML rendering and not Magento itself. I guess problem with displaying on mobile is, that you are using HTML tables. About height of embed element, I can't say for sure.
– Erik
Dec 18 '18 at 23:07
should i use div rather than tables? can i set it up exactly the way it is now with div?
– Daniel Linnan
Dec 19 '18 at 22:55
From my point of view yes. If you want, you can check lots of articles online which explains problems with table layouts ( i.e. this one ) But keep in mind, if you replace table layout with divs, you will have to add styling. ( divs won't look like table by default )
– Erik
Dec 20 '18 at 14:24
|
show 1 more comment
In case you are using Magento 2, I would suggest to use requireJs
<table width="100%">
<tbody>
<tr>
<td>Stock replacement: Bolt in press on bearing</td>
</tr>
<tr>
<td><a href="#" id="showEmbed"><li>How To Measure</li></a></td>
</tr>
<tr id="showme" style="display: none">
<td><embed src="https://dutchmanaxles.com/images/ordering/SR_defined_POB.pdf" type="application/pdf" width="100%" height="600px" /></td>
</tr>
</tbody>
</table>
<script type="text/javascript">
require(['jquery'],function($)
$('#showEmbed').on('click',function(e)
e.preventDefault();
$('#showme').toggle();
)
)
</script>
Ideally I would move JS content to separate JS file and initialize whole functionality via x-magento-init
script or directly bind JS functionality on element via data-mage-init
( both variants are described in Magento DevDocs: Calling and initializing JavaScript )
In case you want to just show embedded content, change jQuery toggle
function to show
That worked!! Now how can i make the window that opens up longer? right now it is only 149.6px tall? dutchmanaxles.com/contact-dutchman-axles.html is where i shoved it for now, but i cant keep it there for very long
– Daniel Linnan
Dec 18 '18 at 15:00
and i cant get it to show on properly on mobile.
– Daniel Linnan
Dec 18 '18 at 15:06
First of all, I could not find code mentioned here on link you've provided. Second of all, your problem will be connected now with HTML rendering and not Magento itself. I guess problem with displaying on mobile is, that you are using HTML tables. About height of embed element, I can't say for sure.
– Erik
Dec 18 '18 at 23:07
should i use div rather than tables? can i set it up exactly the way it is now with div?
– Daniel Linnan
Dec 19 '18 at 22:55
From my point of view yes. If you want, you can check lots of articles online which explains problems with table layouts ( i.e. this one ) But keep in mind, if you replace table layout with divs, you will have to add styling. ( divs won't look like table by default )
– Erik
Dec 20 '18 at 14:24
|
show 1 more comment
In case you are using Magento 2, I would suggest to use requireJs
<table width="100%">
<tbody>
<tr>
<td>Stock replacement: Bolt in press on bearing</td>
</tr>
<tr>
<td><a href="#" id="showEmbed"><li>How To Measure</li></a></td>
</tr>
<tr id="showme" style="display: none">
<td><embed src="https://dutchmanaxles.com/images/ordering/SR_defined_POB.pdf" type="application/pdf" width="100%" height="600px" /></td>
</tr>
</tbody>
</table>
<script type="text/javascript">
require(['jquery'],function($)
$('#showEmbed').on('click',function(e)
e.preventDefault();
$('#showme').toggle();
)
)
</script>
Ideally I would move JS content to separate JS file and initialize whole functionality via x-magento-init
script or directly bind JS functionality on element via data-mage-init
( both variants are described in Magento DevDocs: Calling and initializing JavaScript )
In case you want to just show embedded content, change jQuery toggle
function to show
In case you are using Magento 2, I would suggest to use requireJs
<table width="100%">
<tbody>
<tr>
<td>Stock replacement: Bolt in press on bearing</td>
</tr>
<tr>
<td><a href="#" id="showEmbed"><li>How To Measure</li></a></td>
</tr>
<tr id="showme" style="display: none">
<td><embed src="https://dutchmanaxles.com/images/ordering/SR_defined_POB.pdf" type="application/pdf" width="100%" height="600px" /></td>
</tr>
</tbody>
</table>
<script type="text/javascript">
require(['jquery'],function($)
$('#showEmbed').on('click',function(e)
e.preventDefault();
$('#showme').toggle();
)
)
</script>
Ideally I would move JS content to separate JS file and initialize whole functionality via x-magento-init
script or directly bind JS functionality on element via data-mage-init
( both variants are described in Magento DevDocs: Calling and initializing JavaScript )
In case you want to just show embedded content, change jQuery toggle
function to show
answered Dec 17 '18 at 23:38
ErikErik
242 bronze badges
242 bronze badges
That worked!! Now how can i make the window that opens up longer? right now it is only 149.6px tall? dutchmanaxles.com/contact-dutchman-axles.html is where i shoved it for now, but i cant keep it there for very long
– Daniel Linnan
Dec 18 '18 at 15:00
and i cant get it to show on properly on mobile.
– Daniel Linnan
Dec 18 '18 at 15:06
First of all, I could not find code mentioned here on link you've provided. Second of all, your problem will be connected now with HTML rendering and not Magento itself. I guess problem with displaying on mobile is, that you are using HTML tables. About height of embed element, I can't say for sure.
– Erik
Dec 18 '18 at 23:07
should i use div rather than tables? can i set it up exactly the way it is now with div?
– Daniel Linnan
Dec 19 '18 at 22:55
From my point of view yes. If you want, you can check lots of articles online which explains problems with table layouts ( i.e. this one ) But keep in mind, if you replace table layout with divs, you will have to add styling. ( divs won't look like table by default )
– Erik
Dec 20 '18 at 14:24
|
show 1 more comment
That worked!! Now how can i make the window that opens up longer? right now it is only 149.6px tall? dutchmanaxles.com/contact-dutchman-axles.html is where i shoved it for now, but i cant keep it there for very long
– Daniel Linnan
Dec 18 '18 at 15:00
and i cant get it to show on properly on mobile.
– Daniel Linnan
Dec 18 '18 at 15:06
First of all, I could not find code mentioned here on link you've provided. Second of all, your problem will be connected now with HTML rendering and not Magento itself. I guess problem with displaying on mobile is, that you are using HTML tables. About height of embed element, I can't say for sure.
– Erik
Dec 18 '18 at 23:07
should i use div rather than tables? can i set it up exactly the way it is now with div?
– Daniel Linnan
Dec 19 '18 at 22:55
From my point of view yes. If you want, you can check lots of articles online which explains problems with table layouts ( i.e. this one ) But keep in mind, if you replace table layout with divs, you will have to add styling. ( divs won't look like table by default )
– Erik
Dec 20 '18 at 14:24
That worked!! Now how can i make the window that opens up longer? right now it is only 149.6px tall? dutchmanaxles.com/contact-dutchman-axles.html is where i shoved it for now, but i cant keep it there for very long
– Daniel Linnan
Dec 18 '18 at 15:00
That worked!! Now how can i make the window that opens up longer? right now it is only 149.6px tall? dutchmanaxles.com/contact-dutchman-axles.html is where i shoved it for now, but i cant keep it there for very long
– Daniel Linnan
Dec 18 '18 at 15:00
and i cant get it to show on properly on mobile.
– Daniel Linnan
Dec 18 '18 at 15:06
and i cant get it to show on properly on mobile.
– Daniel Linnan
Dec 18 '18 at 15:06
First of all, I could not find code mentioned here on link you've provided. Second of all, your problem will be connected now with HTML rendering and not Magento itself. I guess problem with displaying on mobile is, that you are using HTML tables. About height of embed element, I can't say for sure.
– Erik
Dec 18 '18 at 23:07
First of all, I could not find code mentioned here on link you've provided. Second of all, your problem will be connected now with HTML rendering and not Magento itself. I guess problem with displaying on mobile is, that you are using HTML tables. About height of embed element, I can't say for sure.
– Erik
Dec 18 '18 at 23:07
should i use div rather than tables? can i set it up exactly the way it is now with div?
– Daniel Linnan
Dec 19 '18 at 22:55
should i use div rather than tables? can i set it up exactly the way it is now with div?
– Daniel Linnan
Dec 19 '18 at 22:55
From my point of view yes. If you want, you can check lots of articles online which explains problems with table layouts ( i.e. this one ) But keep in mind, if you replace table layout with divs, you will have to add styling. ( divs won't look like table by default )
– Erik
Dec 20 '18 at 14:24
From my point of view yes. If you want, you can check lots of articles online which explains problems with table layouts ( i.e. this one ) But keep in mind, if you replace table layout with divs, you will have to add styling. ( divs won't look like table by default )
– Erik
Dec 20 '18 at 14:24
|
show 1 more comment
Try Below code:
<table width="100%">
<tbody>
<tr>
<td>Stock replacement: Bolt in press on bearing</td>
</tr>
<tr>
<td><button onclick="myFunction();">How To Measure</button></td>
</tr>
<tr id="showme" style="display: none">
<td><embed src="https://www.gstatic.com/webp/gallery3/1.png" width="100%" height="600px" /></td>
</tr>
</tbody>
</table>
<script>
function myFunction()
alert("Hello");
var x = document.getElementById("showme");
if (x.style.display === "none")
x.style.display = "block";
else
x.style.display = "none";
</script>
this created the botton, but it didnt work
– Daniel Linnan
Dec 18 '18 at 14:53
Check it here: jsfiddle.net/1kgscbd9
– Abhishek Panchal
Dec 18 '18 at 14:59
yeah i have the height set to 600px but page just doesn't allow it
– Daniel Linnan
Dec 18 '18 at 18:21
add a comment |
Try Below code:
<table width="100%">
<tbody>
<tr>
<td>Stock replacement: Bolt in press on bearing</td>
</tr>
<tr>
<td><button onclick="myFunction();">How To Measure</button></td>
</tr>
<tr id="showme" style="display: none">
<td><embed src="https://www.gstatic.com/webp/gallery3/1.png" width="100%" height="600px" /></td>
</tr>
</tbody>
</table>
<script>
function myFunction()
alert("Hello");
var x = document.getElementById("showme");
if (x.style.display === "none")
x.style.display = "block";
else
x.style.display = "none";
</script>
this created the botton, but it didnt work
– Daniel Linnan
Dec 18 '18 at 14:53
Check it here: jsfiddle.net/1kgscbd9
– Abhishek Panchal
Dec 18 '18 at 14:59
yeah i have the height set to 600px but page just doesn't allow it
– Daniel Linnan
Dec 18 '18 at 18:21
add a comment |
Try Below code:
<table width="100%">
<tbody>
<tr>
<td>Stock replacement: Bolt in press on bearing</td>
</tr>
<tr>
<td><button onclick="myFunction();">How To Measure</button></td>
</tr>
<tr id="showme" style="display: none">
<td><embed src="https://www.gstatic.com/webp/gallery3/1.png" width="100%" height="600px" /></td>
</tr>
</tbody>
</table>
<script>
function myFunction()
alert("Hello");
var x = document.getElementById("showme");
if (x.style.display === "none")
x.style.display = "block";
else
x.style.display = "none";
</script>
Try Below code:
<table width="100%">
<tbody>
<tr>
<td>Stock replacement: Bolt in press on bearing</td>
</tr>
<tr>
<td><button onclick="myFunction();">How To Measure</button></td>
</tr>
<tr id="showme" style="display: none">
<td><embed src="https://www.gstatic.com/webp/gallery3/1.png" width="100%" height="600px" /></td>
</tr>
</tbody>
</table>
<script>
function myFunction()
alert("Hello");
var x = document.getElementById("showme");
if (x.style.display === "none")
x.style.display = "block";
else
x.style.display = "none";
</script>
answered Dec 17 '18 at 19:03
Abhishek PanchalAbhishek Panchal
3,8553 gold badges10 silver badges29 bronze badges
3,8553 gold badges10 silver badges29 bronze badges
this created the botton, but it didnt work
– Daniel Linnan
Dec 18 '18 at 14:53
Check it here: jsfiddle.net/1kgscbd9
– Abhishek Panchal
Dec 18 '18 at 14:59
yeah i have the height set to 600px but page just doesn't allow it
– Daniel Linnan
Dec 18 '18 at 18:21
add a comment |
this created the botton, but it didnt work
– Daniel Linnan
Dec 18 '18 at 14:53
Check it here: jsfiddle.net/1kgscbd9
– Abhishek Panchal
Dec 18 '18 at 14:59
yeah i have the height set to 600px but page just doesn't allow it
– Daniel Linnan
Dec 18 '18 at 18:21
this created the botton, but it didnt work
– Daniel Linnan
Dec 18 '18 at 14:53
this created the botton, but it didnt work
– Daniel Linnan
Dec 18 '18 at 14:53
Check it here: jsfiddle.net/1kgscbd9
– Abhishek Panchal
Dec 18 '18 at 14:59
Check it here: jsfiddle.net/1kgscbd9
– Abhishek Panchal
Dec 18 '18 at 14:59
yeah i have the height set to 600px but page just doesn't allow it
– Daniel Linnan
Dec 18 '18 at 18:21
yeah i have the height set to 600px but page just doesn't allow it
– Daniel Linnan
Dec 18 '18 at 18:21
add a comment |
Personnally, i prefer the data-mage-init way, like described in Core.
You can use it anywhere in Magento .phtml files :
/vendor/magento/module-gift-message/view/frontend/templates/inline.phtml around line 30 :
<button class="action action-gift"
data-mage-init='"toggleAdvanced": "selectorsToggleClass":"hidden", "toggleContainers":"#allow-gift-messages-for-order-container"'>
<span><?= /* @escapeNotVerified */ __('Gift Message') ?></span>
</button>
<div id="allow-gift-messages-for-order-container" class="gift-messages-order hidden">
add a comment |
Personnally, i prefer the data-mage-init way, like described in Core.
You can use it anywhere in Magento .phtml files :
/vendor/magento/module-gift-message/view/frontend/templates/inline.phtml around line 30 :
<button class="action action-gift"
data-mage-init='"toggleAdvanced": "selectorsToggleClass":"hidden", "toggleContainers":"#allow-gift-messages-for-order-container"'>
<span><?= /* @escapeNotVerified */ __('Gift Message') ?></span>
</button>
<div id="allow-gift-messages-for-order-container" class="gift-messages-order hidden">
add a comment |
Personnally, i prefer the data-mage-init way, like described in Core.
You can use it anywhere in Magento .phtml files :
/vendor/magento/module-gift-message/view/frontend/templates/inline.phtml around line 30 :
<button class="action action-gift"
data-mage-init='"toggleAdvanced": "selectorsToggleClass":"hidden", "toggleContainers":"#allow-gift-messages-for-order-container"'>
<span><?= /* @escapeNotVerified */ __('Gift Message') ?></span>
</button>
<div id="allow-gift-messages-for-order-container" class="gift-messages-order hidden">
Personnally, i prefer the data-mage-init way, like described in Core.
You can use it anywhere in Magento .phtml files :
/vendor/magento/module-gift-message/view/frontend/templates/inline.phtml around line 30 :
<button class="action action-gift"
data-mage-init='"toggleAdvanced": "selectorsToggleClass":"hidden", "toggleContainers":"#allow-gift-messages-for-order-container"'>
<span><?= /* @escapeNotVerified */ __('Gift Message') ?></span>
</button>
<div id="allow-gift-messages-for-order-container" class="gift-messages-order hidden">
answered Aug 1 at 14:04
Antoine MartinAntoine Martin
2743 silver badges9 bronze badges
2743 silver badges9 bronze badges
add a comment |
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- 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%2fmagento.stackexchange.com%2fquestions%2f254939%2fonclick-document-getelementbyidshowme%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