{"id":4002,"date":"2024-06-14T10:49:36","date_gmt":"2024-06-14T10:49:36","guid":{"rendered":"https:\/\/dmg.org.in\/education\/?page_id=4002"},"modified":"2024-06-14T10:58:54","modified_gmt":"2024-06-14T10:58:54","slug":"tc-download","status":"publish","type":"page","link":"https:\/\/dmg.org.in\/education\/tc-download\/","title":{"rendered":"TC Download"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"4002\" class=\"elementor elementor-4002\" data-elementor-settings=\"{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e3b1dc4 e-flex e-con-boxed jltma-glass-effect-no e-con e-parent\" data-id=\"e3b1dc4\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-16955e8 e-con-full e-flex jltma-glass-effect-no e-con e-child\" data-id=\"16955e8\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-221b0ba e-con-full e-flex jltma-glass-effect-no e-con e-child\" data-id=\"221b0ba\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1f6c481 jltma-glass-effect-no exad-sticky-section-no exad-glass-effect-no elementor-widget elementor-widget-heading\" data-id=\"1f6c481\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">TC Download<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-290ddda jltma-glass-effect-no exad-sticky-section-no exad-glass-effect-no elementor-widget elementor-widget-html\" data-id=\"290ddda\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<link rel=\"stylesheet\" href=\"\/\/code.jquery.com\/ui\/1.12.1\/themes\/base\/jquery-ui.css\">\n<script src=\"https:\/\/code.jquery.com\/jquery-1.12.4.js\"><\/script>\n<script src=\"https:\/\/code.jquery.com\/ui\/1.12.1\/jquery-ui.js\"><\/script>\n \n<div class=\"\">\n<form class=\"form-vertical tc-dwnld\">\n<div class=\"input-group\">\n<input class=\"form-control\" autocomplete=\"off\" type=\"text\" name=\"admissionNo\" id=\"admissionNo\" required=\"\" placeholder=\"Admission No\">\n<\/div>\n<div class=\"input-group\">\n \n<input autocomplete=\"off\" class=\"form-control\" type=\"text\" name=\"dateOfBirth\" id=\"dateOfBirth\" required=\"\" placeholder=\"Dob(12-Jan-2000)\"><span class=\"input-group-addon ui-datepicker-trigger\"><i class=\"fas fa-calendar-alt fa-lg\"><\/i><\/span>\n<\/div>\n\n<button onclick=\"downloadFile()\" class=\"btn btn-primary si-btn\">Download TC<\/button>\n\n\n    <\/form>\n<\/div>\n\n<script>\n$.noConflict();\n  jQuery( function($) {\n    $( \"#dateOfBirth\" ).datepicker({\n      \"changeMonth\": true,\n      \"changeYear\": true,\n      \"yearRange\": \"1980:2030\",\n      \"dateFormat\":\"dd-M-yy\"      \n});  \n  jQuery('.fa-calendar-alt').click(function() {\n    jQuery(\"#dateOfBirth\").focus(); \n       });  \n  });\n<\/script>\n\n<!--<form>\n\n<input type=\"text\" name=\"admissionNo\" id=\"admissionNo\" required=\"\" placeholder=\"Admission No\">\n<input type=\"text\" name=\"dateOfBirth\" id=\"dateOfBirth\" required=\"\" placeholder=\"Dob(12-Jan-2000)\">\n<button onclick=\"downloadFile()\">Download TC<\/button>\n\n\n    <\/form>-->\n    \n    <script>\n            window.doesFileExist = function (urlToFile) {\n                var xhr = new XMLHttpRequest();\n                xhr.open('HEAD', urlToFile, false);\n                xhr.send();\n                 \n                if (xhr.status == \"404\") {\n                    return false;\n                } else {\n                    return true;\n                }\n            }\n            \n            window.downloadFile = function () {\n                var adminssionNo = document.getElementById(\"admissionNo\").value.replace(\/\\\/\/g, \"-\").replace(\/\\\\\/g, \"-\");\n                var dob = document.getElementById(\"dateOfBirth\").value.replace(\/\\\/\/g, \"\");\n                var baseUrl=window.location.protocol+\"\/\/\"+window.location.host+\"\/tc\/\";\n                var sUrl=baseUrl+adminssionNo+\"_\"+dob+\".jpg\";\n               if(!doesFileExist(sUrl)){\n                alert(\"TC does not exist\");\n                return;\n               }\t\n                \/\/If in Chrome or Safari - download via virtual link click\n                if (window.downloadFile.isChrome || window.downloadFile.isSafari) {\n                    \/\/Creating new link node.\n                    var link = document.createElement('a');\n                    link.href = sUrl;\n                    link.setAttribute('target','_blank');\n            \n                    if (link.download !== undefined) {\n                        \/\/Set HTML5 download attribute. This will prevent file from opening if supported.\n                        var fileName = sUrl.substring(sUrl.lastIndexOf('\/') + 1, sUrl.length);\n                        link.download = fileName;\n                    }\n            \n                    \/\/Dispatching click event.\n                    if (document.createEvent) {\n                        var e = document.createEvent('MouseEvents');\n                        e.initEvent('click', true, true);\n                        link.dispatchEvent(e);\n                        return true;\n                    }\n                }\n            \n                \/\/ Force file download (whether supported by server).\n                if (sUrl.indexOf('?') === -1) {\n                    sUrl += '?download';\n                }\n                window.open(sUrl, '_blank');\n                return true;\n            }\n            window.downloadFile.isChrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;\n            window.downloadFile.isSafari = navigator.userAgent.toLowerCase().indexOf('safari') > -1;\n            <\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c0d9ebe e-con-full e-flex jltma-glass-effect-no e-con e-child\" data-id=\"c0d9ebe\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>TC Download Download TC<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"site-sidebar-layout":"no-sidebar","site-content-layout":"","ast-site-content-layout":"full-width-container","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"disabled","ast-breadcrumbs-content":"","ast-featured-img":"disabled","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ngg_post_thumbnail":0,"footnotes":""},"class_list":["post-4002","page","type-page","status-publish","hentry"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"TC Download Download TC\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/dmg.org.in\/education\/tc-download\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"SRGS - My WordPress Blog\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"TC Download - SRGS\" \/>\n\t\t<meta property=\"og:description\" content=\"TC Download Download TC\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/dmg.org.in\/education\/tc-download\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/dmg.org.in\/education\/wp-content\/uploads\/2016\/11\/header-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/dmg.org.in\/education\/wp-content\/uploads\/2016\/11\/header-logo.png\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2024-06-14T10:49:36+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2024-06-14T10:58:54+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"TC Download - SRGS\" \/>\n\t\t<meta name=\"twitter:description\" content=\"TC Download Download TC\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/dmg.org.in\/education\/wp-content\/uploads\/2016\/11\/header-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/dmg.org.in\\\/education\\\/tc-download\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/dmg.org.in\\\/education#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/dmg.org.in\\\/education\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/dmg.org.in\\\/education\\\/tc-download\\\/#listItem\",\"name\":\"TC Download\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/dmg.org.in\\\/education\\\/tc-download\\\/#listItem\",\"position\":2,\"name\":\"TC Download\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/dmg.org.in\\\/education#listItem\",\"name\":\"Home\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/dmg.org.in\\\/education\\\/#organization\",\"name\":\"SRGS\",\"description\":\"My WordPress Blog\",\"url\":\"https:\\\/\\\/dmg.org.in\\\/education\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/dmg.org.in\\\/education\\\/wp-content\\\/uploads\\\/2016\\\/11\\\/header-logo.png\",\"@id\":\"https:\\\/\\\/dmg.org.in\\\/education\\\/tc-download\\\/#organizationLogo\",\"width\":208,\"height\":63},\"image\":{\"@id\":\"https:\\\/\\\/dmg.org.in\\\/education\\\/tc-download\\\/#organizationLogo\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/dmg.org.in\\\/education\\\/tc-download\\\/#webpage\",\"url\":\"https:\\\/\\\/dmg.org.in\\\/education\\\/tc-download\\\/\",\"name\":\"TC Download - SRGS\",\"description\":\"TC Download Download TC\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/dmg.org.in\\\/education\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/dmg.org.in\\\/education\\\/tc-download\\\/#breadcrumblist\"},\"datePublished\":\"2024-06-14T10:49:36+00:00\",\"dateModified\":\"2024-06-14T10:58:54+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/dmg.org.in\\\/education\\\/#website\",\"url\":\"https:\\\/\\\/dmg.org.in\\\/education\\\/\",\"name\":\"SRGS\",\"description\":\"My WordPress Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/dmg.org.in\\\/education\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"TC Download - SRGS","description":"TC Download Download TC","canonical_url":"https:\/\/dmg.org.in\/education\/tc-download\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/dmg.org.in\/education\/tc-download\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/dmg.org.in\/education#listItem","position":1,"name":"Home","item":"https:\/\/dmg.org.in\/education","nextItem":{"@type":"ListItem","@id":"https:\/\/dmg.org.in\/education\/tc-download\/#listItem","name":"TC Download"}},{"@type":"ListItem","@id":"https:\/\/dmg.org.in\/education\/tc-download\/#listItem","position":2,"name":"TC Download","previousItem":{"@type":"ListItem","@id":"https:\/\/dmg.org.in\/education#listItem","name":"Home"}}]},{"@type":"Organization","@id":"https:\/\/dmg.org.in\/education\/#organization","name":"SRGS","description":"My WordPress Blog","url":"https:\/\/dmg.org.in\/education\/","logo":{"@type":"ImageObject","url":"https:\/\/dmg.org.in\/education\/wp-content\/uploads\/2016\/11\/header-logo.png","@id":"https:\/\/dmg.org.in\/education\/tc-download\/#organizationLogo","width":208,"height":63},"image":{"@id":"https:\/\/dmg.org.in\/education\/tc-download\/#organizationLogo"}},{"@type":"WebPage","@id":"https:\/\/dmg.org.in\/education\/tc-download\/#webpage","url":"https:\/\/dmg.org.in\/education\/tc-download\/","name":"TC Download - SRGS","description":"TC Download Download TC","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/dmg.org.in\/education\/#website"},"breadcrumb":{"@id":"https:\/\/dmg.org.in\/education\/tc-download\/#breadcrumblist"},"datePublished":"2024-06-14T10:49:36+00:00","dateModified":"2024-06-14T10:58:54+00:00"},{"@type":"WebSite","@id":"https:\/\/dmg.org.in\/education\/#website","url":"https:\/\/dmg.org.in\/education\/","name":"SRGS","description":"My WordPress Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/dmg.org.in\/education\/#organization"}}]},"og:locale":"en_US","og:site_name":"SRGS - My WordPress Blog","og:type":"article","og:title":"TC Download - SRGS","og:description":"TC Download Download TC","og:url":"https:\/\/dmg.org.in\/education\/tc-download\/","og:image":"https:\/\/dmg.org.in\/education\/wp-content\/uploads\/2016\/11\/header-logo.png","og:image:secure_url":"https:\/\/dmg.org.in\/education\/wp-content\/uploads\/2016\/11\/header-logo.png","article:published_time":"2024-06-14T10:49:36+00:00","article:modified_time":"2024-06-14T10:58:54+00:00","twitter:card":"summary_large_image","twitter:title":"TC Download - SRGS","twitter:description":"TC Download Download TC","twitter:image":"https:\/\/dmg.org.in\/education\/wp-content\/uploads\/2016\/11\/header-logo.png"},"aioseo_meta_data":{"post_id":"4002","title":null,"description":null,"keywords":null,"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"WebPage","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2024-06-14 10:49:37","updated":"2025-06-04 13:23:17","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/dmg.org.in\/education\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tTC Download\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/dmg.org.in\/education"},{"label":"TC Download","link":"https:\/\/dmg.org.in\/education\/tc-download\/"}],"_links":{"self":[{"href":"https:\/\/dmg.org.in\/education\/wp-json\/wp\/v2\/pages\/4002","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dmg.org.in\/education\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/dmg.org.in\/education\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/dmg.org.in\/education\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/dmg.org.in\/education\/wp-json\/wp\/v2\/comments?post=4002"}],"version-history":[{"count":4,"href":"https:\/\/dmg.org.in\/education\/wp-json\/wp\/v2\/pages\/4002\/revisions"}],"predecessor-version":[{"id":4007,"href":"https:\/\/dmg.org.in\/education\/wp-json\/wp\/v2\/pages\/4002\/revisions\/4007"}],"wp:attachment":[{"href":"https:\/\/dmg.org.in\/education\/wp-json\/wp\/v2\/media?parent=4002"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}