Jump to content
Sign in to follow this  
class_sick

Tambah Javascript Dalam Template Blogspot

Recommended Posts

Salam.
kawan2,nak minta tlg skit.
ku nak letak javascript dlm template blogspot tp dia kuar error mcm kat bwh nie

We were unable to save your template
Please correct the error below, and submit your template again.
Your template could not be parsed as it is not well-formed. Please make sure all XML elements are closed properly.
XML error message: The entity name must immediately follow the '&' in the entity reference.


java sript yg ku nak letak tu mcm kat bwh nie

Code:
<script language="JavaScript">

        var fixd;

        function isGregLeapYear(year)
        {
                return year%4 == 0 && year%100 != 0 || year%400 == 0;
        }

        function gregToFixed(year, month, day)
        {
                var a = Math.floor((year - 1) / 4);
                var b = Math.floor((year - 1) / 100);
                var c = Math.floor((year - 1) / 400);
                var d = Math.floor((367 * month - 362) / 12);

                if (month <= 2)
                        e = 0;
                else if (month > 2 && isGregLeapYear(year))
                        e = -1;
                else
                        e = -2;

                return 1 - 1 + 365 * (year - 1) + a - b + c + d + e + day;
        }

        function Hijri(year, month, day)
        {
                this.year = year;
                this.month = month;
                this.day = day;
                this.toFixed = hijriToFixed;
                this.toString = hijriToString;
        }

        function hijriToFixed()
        {
                return this.day + Math.ceil(29.5 * (this.month - 1)) + (this.year - 1) * 354 +
                        Math.floor((3 + 11 * this.year) / 30) + 227015 - 1;
        }

        function hijriToString()
        {
                var months = new Array("Muharam","Safar","Rabi\'ul Awal","Rabiul Akhir","Jamadil Awal","Jamadil Akhir","Rajab","Sha\'ban","Ramadhan","Shawwal","Dzulka\'edah","Dzulhijjah");
          return this.day + " " + months[this.month - 1]+ " " + this.year;
        }

        function fixedToHijri(f)
        {
          var i=new Hijri(1100, 1, 1);
          i.year = Math.floor((30 * (f - 227015) + 10646) / 10631);
          var i2=new Hijri(i.year, 1, 1);
          var m = Math.ceil((f - 29 - i2.toFixed()) / 29.5) + 1;
          i.month = Math.min(m, 12);
          i2.year = i.year;
                i2.month = i.month;
                i2.day = 1;
          i.day = f - i2.toFixed() + 1;
          return i;
        }

        var tod=new Date();
        var weekday=new Array("Ahad","Isnin","Selasa","Rabu","Khamis","Jumaat","Sabtu");
        var monthname=new Array("Januari","Februari","Mac","April","Mei","Jun","Julai","Ogos","September","Oktober","November","Disember");

        var y = tod.getFullYear();
        var m = tod.getMonth();
        var d = tod.getDate();
        var dow = tod.getDay();
        document.write(weekday[dow] + " " + d + " " + monthname[m] + " " + y);
        m++;
        fixd=gregToFixed(y, m, d);
        var h=new Hijri(1421, 11, 28);
        h = fixedToHijri(fixd);
        document.write(" | " + h.toString() + " Hijrah");

      </script>



ku try letak coding lain kat bhgian tu ok jer.tp bila nak letak javascript dia kuar error mcm tu.

ke mmg xboleh letak javascript dlm template blogspot?

Thanks

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
Sign in to follow this  

×
×
  • Create New...