Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7993497
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T13:51:55+00:00 2026-06-04T13:51:55+00:00

I have written a javascript for changing the timezone of a field on my

  • 0

I have written a javascript for changing the “timezone” of a field on my website using a dropdown select menu.

You can see the script here: http://jsfiddle.net/dTb76/14/

However, I have reached the limits of what I know how to do – I need the script to modify several “time” fields, however, at the moment it can only work with one field.

I’ve been trying to figure out what changes to make for days, however I have not been having much luck. Best I can tell, I need some kind of “foreach” statement, telling it to store the original time for each field and then modify it by whatever is selected in the select, however I am not sure how to implement that in jQuery/javascript.

Would appreciate help.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T13:51:56+00:00Added an answer on June 4, 2026 at 1:51 pm

    You just need to use $.each JQuery function:

    $('#modTime').change(function() {
    
        var times = $('.time');
    
        $.each(times, function(index, value) {
    
            var curTime = $(value).text();
    
            curTimeHH = parseInt(curTime.split(':')[0],10);
    
            $(value).attr('originalTime', curTime);
    
            var modifyBy = parseInt($('#modTime').val(),10);
    
            curTimeHH = parseInt(curTime,10) + modifyBy;
    
            if (curTimeHH === 0) {
                $(value).text('24:00');
            } else if (curTimeHH > 24) { 
                curTimeHH = curTimeHH - 24;
                $(value).text('0'+curTimeHH + ':00');
            } else if (curTimeHH < 0) {
                curTimeHH = curTimeHH + 24;
                $(value).text(curTimeHH + ':00');
            } else { 
                $(value).text(curTimeHH + ':00');
            }                
        });        
    });​
    

    Edit:

    To retrieve the ‘original time’ of every field, you could do something like:

        var times = $('.time');
    
        $.each(times, function(index, value) {
    
            var originalTime = $(value).attr('originalTime');
            ...
        });     
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using some pre-written JavaScript from polldaddy. They have a JavaScript option which,
I have written a Javascript/jQuery script. Its purpose is to serve as a responsive
I have written some javascript code that's supposed to put options into a select
I have written a function using javascript for validating a Date selected from a
Once again I have written some Javascript using jQuery, and it works in every
I have written a javascript function that uses setInterval to manipulate a string every
I have written the following Javascript code : var outerFrame = document.getElementById(myframe); var outerDoc
I have written this code in javascript however I have to make it work
I have an animation written in JavaScript. I want to render it to a
I have an application with most of the code written in javascript. I am

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.