• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
Locked
0

Ayuda Auto refresh .html

Explorer ,
Dec 08, 2017 Dec 08, 2017

Copy link to clipboard

Copied

Hola buena tardes, alguien sabe como hacer un auto refresh .html en una pagina de adobe muse?

Views

353

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Dec 13, 2017 Dec 13, 2017

Hey Diego,

Not sure if it will work but I found a Javascript from Dreamweaver forum.

<script type="text/javascript">
$(document).ready(function(){
  $
('img').each(function(){

      var date = new Date;
     
// add the current unix timestamp in microseconds to the the image src as a query string
     
this.src = this.src + '?' + date.getTime();
  
});

});
</script>

Paste the above code in Master Pade > page properties > Metadata >HTMl for Head section.

Upload your site and see if works for you as well.

Any o

...

Votes

Translate

Translate
Dec 13, 2017 Dec 13, 2017

Copy link to clipboard

Copied

Hey Diego,

Not sure if it will work but I found a Javascript from Dreamweaver forum.

<script type="text/javascript">
$(document).ready(function(){
  $
('img').each(function(){

      var date = new Date;
     
// add the current unix timestamp in microseconds to the the image src as a query string
     
this.src = this.src + '?' + date.getTime();
  
});

});
</script>

Paste the above code in Master Pade > page properties > Metadata >HTMl for Head section.

Upload your site and see if works for you as well.

Any other recommendations and also invited.

Regards,

Ankush

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Dec 14, 2017 Dec 14, 2017

Copy link to clipboard

Copied

LATEST

Hola!!!, gracias, gracias, gracias. Muchas gracias por ayudarme.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines