/*! elementor-pro - v3.26.0 - 17-12-2024 */ (()=>{"use strict";class Screenshot extends elementorModules.ViewModule{getDefaultSettings(){return{empty_content_headline:"Empty Content.",crop:{width:1200,height:1500},excluded_external_css_urls:["https://kit-pro.fontawesome.com"],external_images_urls:["https://i.ytimg.com"],timeout:15e3,render_timeout:5e3,timerLabel:null,timer_label:`${ElementorScreenshotConfig.post_id} - timer`,image_placeholder:"data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=",isDebug:elementorCommonConfig.isElementorDebug,isDebugSvg:!1,...ElementorScreenshotConfig}}getDefaultElements(){const e=jQuery(ElementorScreenshotConfig.selector),t=e.find(".elementor-section-wrap > .elementor-section, .elementor > .elementor-section");return{$elementor:e,$sections:t,$firstSection:t.first(),$notElementorElements:elementorCommon.elements.$body.find("> *:not(style, link)").not(e),$head:jQuery("head")}}onInit(){return super.onInit(),this.log("Screenshot init","time"),this.timeoutTimer=setTimeout(this.screenshotFailed.bind(this),this.getSettings("timeout")),this.captureScreenshot()}captureScreenshot(){return this.elements.$elementor.length||(elementorCommon.helpers.consoleWarn("Screenshots: The content of this page is empty, the module will create a fake conent just for this screenshot."),this.createFakeContent()),this.removeUnnecessaryElements(),this.handleIFrames(),this.removeFirstSectionMargin(),this.handleLinks(),this.loadExternalCss(),this.loadExternalImages(),Promise.resolve().then(this.createImage.bind(this)).then(this.createImageElement.bind(this)).then(this.cropCanvas.bind(this)).then(this.save.bind(this)).then(this.screenshotSucceed.bind(this)).catch(this.screenshotFailed.bind(this))}createFakeContent(){this.elements.$elementor=jQuery("
").css({height:this.getSettings("crop.height"),width:this.getSettings("crop.width"),display:"flex",alignItems:"center",justifyContent:"center"}),this.elements.$elementor.append(jQuery("

").css({fontSize:"85px"}).html(this.getSettings("empty_content_headline"))),document.body.prepend(this.elements.$elementor)}loadExternalCss(){const e=[this.getSettings("home_url"),...this.getSettings("excluded_external_css_urls")].map((e=>`[href^="${e}"]`)).join(", ");jQuery("link").not(e).each(((e,t)=>{const s=jQuery(t),n=s.clone();n.attr("href",this.getScreenshotProxyUrl(s.attr("href"))),this.elements.$head.append(n),s.remove()}))}loadExternalImages(){const e=this.getSettings("external_images_urls").map((e=>`img[src^="${e}"]`)).join(", ");jQuery(e).each(((e,t)=>{const s=jQuery(t);s.attr("src",this.getScreenshotProxyUrl(s.attr("src")))}))}handleIFrames(){this.elements.$elementor.find("iframe").each(((e,t)=>{const s=jQuery(t),n=jQuery("
",{css:{background:"gray",width:s.width(),height:s.height()}});s.before(n),s.remove()}))}removeUnnecessaryElements(){let e=0;this.elements.$sections.filter(((t,s)=>{let n=!1;return e>=this.getSettings("crop.height")&&(n=!0),e+=jQuery(s).outerHeight(),n})).each(((e,t)=>{t.remove()})),this.elements.$notElementorElements.remove()}handleLinks(){elementorCommon.elements.$body.find("a").attr("href","/")}removeFirstSectionMargin(){this.elements.$firstSection.css({marginTop:0})}createImage(){const e=new Promise((e=>{window.addEventListener("load",(()=>{e()}))})),t=new Promise((e=>{setTimeout((()=>{e()}),this.getSettings("render_timeout"))}));return Promise.race([e,t]).then((()=>{if(this.log("Start creating screenshot."),this.getSettings("isDebugSvg"))return domtoimage.toSvg(document.body,{imagePlaceholder:this.getSettings("image_placeholder")}).then((e=>this.download(e))),Promise.reject("Debug SVG.");return/^((?!chrome|android).)*safari/i.test(window.userAgent)?(this.log('Creating screenshot with "html2canvas"'),html2canvas(document.body).then((e=>e.toDataURL("image/png")))):(this.log('Creating screenshot with "dom-to-image"'),domtoimage.toPng(document.body,{imagePlaceholder:this.getSettings("image_placeholder")}))}))}download(e){const t=jQuery("",{href:e,download:"debugSvg.svg",html:"Download SVG"});elementorCommon.elements.$body.append(t),t.trigger("click")}createImageElement(e){const t=new Image;return t.src=e,new Promise((e=>{t.onload=()=>e(t)}))}cropCanvas(e){const t=this.getSettings("crop.width"),s=this.getSettings("crop.height"),n=document.createElement("canvas"),i=n.getContext("2d"),o=t/e.width;return n.width=t,n.height=s>e.height?e.height:s,i.drawImage(e,0,0,e.width,e.height,0,0,e.width*o,e.height*o),Promise.resolve(n)}save(e){return new Promise(((t,s)=>{elementorCommon.ajax.addRequest("screenshot_save",{data:{post_id:this.getSettings("post_id"),screenshot:e.toDataURL("image/png")},success:e=>{this.log(`Screenshot created: ${encodeURI(e)}`),t(e)},error:()=>{this.log("Failed to create screenshot."),s()}})}))}markAsFailed(){return new Promise(((e,t)=>{elementorCommon.ajax.addRequest("screenshot_failed",{data:{post_id:this.getSettings("post_id")},success:()=>{this.log("Marked as failed."),e()},error:()=>{this.log("Failed to mark this screenshot as failed."),t()}})}))}getScreenshotProxyUrl(e){return`${this.getSettings("home_url")}?screenshot_proxy&nonce=${this.getSettings("nonce")}&href=${e}`}screenshotSucceed(e){this.screenshotDone(!0,e)}screenshotFailed(e){this.log(e,null),this.markAsFailed().then((()=>this.screenshotDone(!1)))}screenshotDone(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;clearTimeout(this.timeoutTimer),this.timeoutTimer=null,window.parent.postMessage({name:"capture-screenshot-done",success:e,id:this.getSettings("post_id"),imageUrl:t},"*"),this.log(`Screenshot ${e?"Succeed":"Failed"}.`,"timeEnd")}log(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"timeLog";this.getSettings("isDebug")&&(console.log("string"==typeof e?`${this.getSettings("post_id")} - ${e}`:e),t&&console[t](this.getSettings("timer_label")))}}jQuery((()=>{new Screenshot}))})();{"id":826,"date":"2024-11-21T16:36:37","date_gmt":"2024-11-21T16:36:37","guid":{"rendered":"https:\/\/thetach.com\/?p=826"},"modified":"2024-11-21T16:36:38","modified_gmt":"2024-11-21T16:36:38","slug":"australias-plan-to-ban-children-from-social-media-can-it-succeed","status":"publish","type":"post","link":"https:\/\/thetach.com\/?p=826","title":{"rendered":"Australia’s Plan to Ban Children from Social Media: Can It Succeed?"},"content":{"rendered":"\n

The Australian government\u2019s proposal to implement a bold Social Media Ban<\/strong> for children under 16 years has ignited an intense national debate. Social media apps <\/strong>and websites such as X, TikTok<\/strong>, Facebook, <\/strong>and Instagram<\/strong> among others are primarily on the receiving end of such a plan. This proposal is aimed at exploring the effects or otherwise of operating social media platforms<\/strong>, particularly on youthful users. Nevertheless, the Ban wants to consider some questions about its feasibility, the ways of its application, and the possible consequences. Looking at the issues and stakes of the Social Media <\/strong>, we also present a qualitative global perspective in addition to the opinions of specialists, parents, and teenagers.<\/p>\n\n\n\n

Political Support for the Social Media Ban<\/strong><\/h2>\n\n\n\n

The Social Media Ban<\/strong> has received broad political backing, with unanimous support from leaders across all eight Australian states and mainland territories. Even Tasmania, which recommended lowering the age limit to 14, has approved it. Both ruling and opposition parties have aligned, pledging action to safeguard children from the potential dangers of social media platforms<\/strong>.<\/p>\n\n\n\n

However, not all voices are in favor. The technology <\/strong>and child welfare experts<\/strong> have written an open letter signed by more than 140 professionals addressed to PM Anthony Albanese<\/strong>. Of the Social Media Ban<\/strong> they said it was a blunt instrument that does not work effectively to deal with risks on the internet. Opponents say that will not reflect the various problems such as bullying, exploitation<\/strong>, and direct exposure of children to prohibited content through social media.<\/p>\n\n\n\n

Implementation Challenges of the Social Ban<\/strong><\/h2>\n\n\n\n

Despite widespread support, the Social Media Ban<\/strong> has been criticized for its vague implementation strategy. While legislation is expected in Parliament soon, key questions remain unanswered. A significant challenge lies in age verification. Employers restrict their recruitment process by using the Internet and social networks<\/strong>, nearly every social network asks for the user\u2019s age, most often provided with fake information. Other measures include such as digital identification systems<\/strong>, but these also refer to higher levels of privacy violation<\/strong>. <\/p>\n\n\n\n

The Social Media Ban<\/strong> will likely require platforms to implement technologies that verify user ages while ensuring data security. Tama Leaver, an internet studies professor, voiced skepticism about the process. \u201cSocial media companies have a history of poor data protection practices,\u201d he said. \u201cGiving them the responsibility for identity verification under the Ban<\/strong> poses serious risks to users\u2019 privacy.\u201d<\/p>\n\n\n\n

Teenagers Oppose the Social Media Ban<\/strong><\/h2>\n\n\n\n

Young people have said that they are against the imperative of the Social Media Ban<\/strong> stating that they consider platforms as their means of communication and other relevant uses. A seventeen-year-old boy<\/strong> Leo Puglisi<\/strong>, the owner of 6 News Australia, went on and call the ban short-sighted. \u201cIt is with not much surprise or exaggeration that I can say that for these young people, social media is a way of life,\u201d he said. In the freeholder’s worst week of all \u2018The Ban won\u2019t solve issues, it will only postpone them.\u2019<\/p>\n\n\n

\n
\"Social<\/figure><\/div>\n\n\n

Leo\u2019s views highlight a generational gap in understanding the role of social media platforms<\/strong>. His contributions as a journalist earned him a nomination for Victoria\u2019s Young Australian of the Year<\/strong> award. He advocates for solutions focusing on improving digital literacy and creating safer online spaces rather than imposing a strict Social Media Ban<\/strong>.<\/p>\n\n\n\n

Parental Support for the Social Media Ban<\/strong><\/h2>\n\n\n\n

The Social Media Ban<\/strong> has received strong backing from parents and safety advocates. Sonya Ryan, a prominent cyber safety campaigner, is one of its most passionate supporters. Her advocacy stems from a personal tragedy\u2014her 15-year-old daughter, Carly, was murdered in 2007 by an online predator. \u201cSocial media exposes kids to predators, bullying, and harmful content,\u201d Ryan said. \u201cWe need to act decisively, even if the Social Ban<\/strong> isn\u2019t perfect.\u201d Ryan believes that the Ban<\/strong> will serve as a critical step toward safeguarding children, especially from issues like social media addiction<\/strong> and anxiety. Her work advising the government on combating online exploitation emphasizes the need for protective measures.<\/p>\n\n\n\n

Privacy Concerns and Digital Data Risks<\/strong><\/h2>\n\n\n\n

The Social Media Ban<\/strong> raises legitimate privacy concerns. Age verification systems, such as digital IDs, may require social media platforms<\/strong> to store sensitive personal data, which could be misused. \u201cBalancing safety with privacy is a difficult task,\u201d said Tama Leaver. \u201cUnder the Social Media Ban<\/strong>, platforms would need to act as data custodians, which is risky given their track record.\u201d While the government has given platforms one year to comply with the Social Media Ban<\/strong>, questions remain about how to balance child protection with user privacy.<\/p>\n\n\n\n

Weighing the Risks and Benefits of the Social Media Ban<\/strong><\/h2>\n\n\n\n

The Ban<\/strong> forces society to confront the dangers of unregulated digital spaces. Proponents argue that social media addiction<\/strong>, rising mental health crises, and cyberbullying necessitate urgent intervention. Sonya Ryan posed a critical question: \u201cWhat is the cost of not acting?\u201d For many parents and safety advocates. <\/p>\n\n\n

\n
\"Australian<\/figure><\/div>\n\n\n

The risks of inaction far outweigh the implementation challenges of the Ban<\/strong>. However, critics argue that the ban alone won\u2019t address the root causes of issues on social platforms<\/strong>. They advocate for comprehensive solutions, such as digital education programs, safer platform designs, and stricter content moderation.<\/p>\n\n\n\n

Conclusion<\/strong><\/h2>\n\n\n\n

Australia\u2019s Social Media Ban<\/strong> represents a significant attempt to address the risks posed by social media platforms<\/strong> to young users. While its intent to protect children is widely supported, its implementation raises complex challenges. Privacy concerns, enforcement hurdles, and opposition from teenagers highlight the difficulties of regulating social media. As the legislation proceeds, Australia\u2019s government<\/strong> has to look for ways to make it successful. It underlines the need to protect children but at the same respect their rights while using the new technologies in the conducted debate.<\/p>\n\n\n\n

FAQs<\/strong><\/h2>\n\n\n\n
What does the Australian government\u2019s Social Media Ban involve?<\/strong><\/strong>

It bans children under 16 from using social media platforms like TikTok and X.<\/p> <\/div>

Why has the Social Ban sparked criticism from experts?<\/strong><\/strong>

Critics claim the ban oversimplifies complex issues and lacks practical details.<\/p> <\/div>

How will the Ban enforce age restrictions?<\/strong><\/strong>

Social media platforms will likely use digital verification to confirm user ages.<\/p> <\/div>

What are the privacy concerns linked to the Social Ban?<\/strong><\/strong>

Critics worry that enforcing the ban will require storing sensitive personal data.<\/p> <\/div> <\/div>\n","protected":false},"excerpt":{"rendered":"

The Australian government\u2019s proposal to implement a bold Social Media Ban for children under 16 years has ignited an intense national debate. Social media apps and websites such as X, TikTok, Facebook, and Instagram among others are primarily on the receiving end of such a plan. This proposal is aimed at exploring the effects or … Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":827,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[308,307,309],"class_list":["post-826","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-entertainment","tag-australian-social-media-restrictions","tag-social-media-ban","tag-social-media-privacy-concerns"],"yoast_head":"\nSocial Media Ban on Children Australia's Plan<\/title>\n<meta name=\"description\" content=\"Australia's Social Media Ban for under-16s sparks debates over privacy, enforcement, and protecting teens from online risks.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/thetach.com\/?p=826\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Social Media Ban on Children Australia's Plan\" \/>\n<meta property=\"og:description\" content=\"Australia's Social Media Ban for under-16s sparks debates over privacy, enforcement, and protecting teens from online risks.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/thetach.com\/?p=826\" \/>\n<meta property=\"og:site_name\" content=\"The Tach\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-21T16:36:37+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-21T16:36:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/thetach.com\/wp-content\/uploads\/2024\/11\/Social-Media-Ban.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"735\" \/>\n\t<meta property=\"og:image:height\" content=\"488\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"burhan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"burhan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":[\"WebPage\",\"FAQPage\"],\"@id\":\"https:\/\/thetach.com\/?p=826\",\"url\":\"https:\/\/thetach.com\/?p=826\",\"name\":\"Social Media Ban on Children Australia's Plan\",\"isPartOf\":{\"@id\":\"https:\/\/thetach.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/thetach.com\/?p=826#primaryimage\"},\"image\":{\"@id\":\"https:\/\/thetach.com\/?p=826#primaryimage\"},\"thumbnailUrl\":\"https:\/\/thetach.com\/wp-content\/uploads\/2024\/11\/Social-Media-Ban.jpg\",\"datePublished\":\"2024-11-21T16:36:37+00:00\",\"dateModified\":\"2024-11-21T16:36:38+00:00\",\"author\":{\"@id\":\"https:\/\/thetach.com\/#\/schema\/person\/6d6cb82cade4630d79ecea8e44584e24\"},\"description\":\"Australia's Social Media Ban for under-16s sparks debates over privacy, enforcement, and protecting teens from online risks.\",\"breadcrumb\":{\"@id\":\"https:\/\/thetach.com\/?p=826#breadcrumb\"},\"mainEntity\":[{\"@id\":\"https:\/\/thetach.com\/?p=826#faq-question-1732206150868\"},{\"@id\":\"https:\/\/thetach.com\/?p=826#faq-question-1732206151750\"},{\"@id\":\"https:\/\/thetach.com\/?p=826#faq-question-1732206187786\"},{\"@id\":\"https:\/\/thetach.com\/?p=826#faq-question-1732206255223\"}],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/thetach.com\/?p=826\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/thetach.com\/?p=826#primaryimage\",\"url\":\"https:\/\/thetach.com\/wp-content\/uploads\/2024\/11\/Social-Media-Ban.jpg\",\"contentUrl\":\"https:\/\/thetach.com\/wp-content\/uploads\/2024\/11\/Social-Media-Ban.jpg\",\"width\":735,\"height\":488,\"caption\":\"Social Media Ban\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/thetach.com\/?p=826#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/thetach.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Australia’s Plan to Ban Children from Social Media: Can It Succeed?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/thetach.com\/#website\",\"url\":\"https:\/\/thetach.com\/\",\"name\":\"The Tach\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/thetach.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/thetach.com\/#\/schema\/person\/6d6cb82cade4630d79ecea8e44584e24\",\"name\":\"burhan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/thetach.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/97ceb1b65cf3f734d7ae9f33b317bd9c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/97ceb1b65cf3f734d7ae9f33b317bd9c?s=96&d=mm&r=g\",\"caption\":\"burhan\"},\"sameAs\":[\"https:\/\/thetach.com\"],\"url\":\"https:\/\/thetach.com\/?author=1\"},{\"@type\":\"Question\",\"@id\":\"https:\/\/thetach.com\/?p=826#faq-question-1732206150868\",\"position\":1,\"url\":\"https:\/\/thetach.com\/?p=826#faq-question-1732206150868\",\"name\":\"What does the Australian government\u2019s Social Media Ban involve?\",\"answerCount\":1,\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"It bans children under 16 from using social media platforms like TikTok and X.\",\"inLanguage\":\"en-US\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Question\",\"@id\":\"https:\/\/thetach.com\/?p=826#faq-question-1732206151750\",\"position\":2,\"url\":\"https:\/\/thetach.com\/?p=826#faq-question-1732206151750\",\"name\":\"Why has the Social Ban sparked criticism from experts?\",\"answerCount\":1,\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Critics claim the ban oversimplifies complex issues and lacks practical details.\",\"inLanguage\":\"en-US\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Question\",\"@id\":\"https:\/\/thetach.com\/?p=826#faq-question-1732206187786\",\"position\":3,\"url\":\"https:\/\/thetach.com\/?p=826#faq-question-1732206187786\",\"name\":\"How will the Ban enforce age restrictions?\",\"answerCount\":1,\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Social media platforms will likely use digital verification to confirm user ages.\",\"inLanguage\":\"en-US\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Question\",\"@id\":\"https:\/\/thetach.com\/?p=826#faq-question-1732206255223\",\"position\":4,\"url\":\"https:\/\/thetach.com\/?p=826#faq-question-1732206255223\",\"name\":\"What are the privacy concerns linked to the Social Ban?\",\"answerCount\":1,\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Critics worry that enforcing the ban will require storing sensitive personal data.\",\"inLanguage\":\"en-US\"},\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Social Media Ban on Children Australia's Plan","description":"Australia's Social Media Ban for under-16s sparks debates over privacy, enforcement, and protecting teens from online risks.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/thetach.com\/?p=826","og_locale":"en_US","og_type":"article","og_title":"Social Media Ban on Children Australia's Plan","og_description":"Australia's Social Media Ban for under-16s sparks debates over privacy, enforcement, and protecting teens from online risks.","og_url":"https:\/\/thetach.com\/?p=826","og_site_name":"The Tach","article_published_time":"2024-11-21T16:36:37+00:00","article_modified_time":"2024-11-21T16:36:38+00:00","og_image":[{"width":735,"height":488,"url":"https:\/\/thetach.com\/wp-content\/uploads\/2024\/11\/Social-Media-Ban.jpg","type":"image\/jpeg"}],"author":"burhan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"burhan","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["WebPage","FAQPage"],"@id":"https:\/\/thetach.com\/?p=826","url":"https:\/\/thetach.com\/?p=826","name":"Social Media Ban on Children Australia's Plan","isPartOf":{"@id":"https:\/\/thetach.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/thetach.com\/?p=826#primaryimage"},"image":{"@id":"https:\/\/thetach.com\/?p=826#primaryimage"},"thumbnailUrl":"https:\/\/thetach.com\/wp-content\/uploads\/2024\/11\/Social-Media-Ban.jpg","datePublished":"2024-11-21T16:36:37+00:00","dateModified":"2024-11-21T16:36:38+00:00","author":{"@id":"https:\/\/thetach.com\/#\/schema\/person\/6d6cb82cade4630d79ecea8e44584e24"},"description":"Australia's Social Media Ban for under-16s sparks debates over privacy, enforcement, and protecting teens from online risks.","breadcrumb":{"@id":"https:\/\/thetach.com\/?p=826#breadcrumb"},"mainEntity":[{"@id":"https:\/\/thetach.com\/?p=826#faq-question-1732206150868"},{"@id":"https:\/\/thetach.com\/?p=826#faq-question-1732206151750"},{"@id":"https:\/\/thetach.com\/?p=826#faq-question-1732206187786"},{"@id":"https:\/\/thetach.com\/?p=826#faq-question-1732206255223"}],"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/thetach.com\/?p=826"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/thetach.com\/?p=826#primaryimage","url":"https:\/\/thetach.com\/wp-content\/uploads\/2024\/11\/Social-Media-Ban.jpg","contentUrl":"https:\/\/thetach.com\/wp-content\/uploads\/2024\/11\/Social-Media-Ban.jpg","width":735,"height":488,"caption":"Social Media Ban"},{"@type":"BreadcrumbList","@id":"https:\/\/thetach.com\/?p=826#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/thetach.com\/"},{"@type":"ListItem","position":2,"name":"Australia’s Plan to Ban Children from Social Media: Can It Succeed?"}]},{"@type":"WebSite","@id":"https:\/\/thetach.com\/#website","url":"https:\/\/thetach.com\/","name":"The Tach","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/thetach.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/thetach.com\/#\/schema\/person\/6d6cb82cade4630d79ecea8e44584e24","name":"burhan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/thetach.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/97ceb1b65cf3f734d7ae9f33b317bd9c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/97ceb1b65cf3f734d7ae9f33b317bd9c?s=96&d=mm&r=g","caption":"burhan"},"sameAs":["https:\/\/thetach.com"],"url":"https:\/\/thetach.com\/?author=1"},{"@type":"Question","@id":"https:\/\/thetach.com\/?p=826#faq-question-1732206150868","position":1,"url":"https:\/\/thetach.com\/?p=826#faq-question-1732206150868","name":"What does the Australian government\u2019s Social Media Ban involve?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"It bans children under 16 from using social media platforms like TikTok and X.","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Question","@id":"https:\/\/thetach.com\/?p=826#faq-question-1732206151750","position":2,"url":"https:\/\/thetach.com\/?p=826#faq-question-1732206151750","name":"Why has the Social Ban sparked criticism from experts?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"Critics claim the ban oversimplifies complex issues and lacks practical details.","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Question","@id":"https:\/\/thetach.com\/?p=826#faq-question-1732206187786","position":3,"url":"https:\/\/thetach.com\/?p=826#faq-question-1732206187786","name":"How will the Ban enforce age restrictions?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"Social media platforms will likely use digital verification to confirm user ages.","inLanguage":"en-US"},"inLanguage":"en-US"},{"@type":"Question","@id":"https:\/\/thetach.com\/?p=826#faq-question-1732206255223","position":4,"url":"https:\/\/thetach.com\/?p=826#faq-question-1732206255223","name":"What are the privacy concerns linked to the Social Ban?","answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"Critics worry that enforcing the ban will require storing sensitive personal data.","inLanguage":"en-US"},"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/thetach.com\/index.php?rest_route=\/wp\/v2\/posts\/826","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/thetach.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/thetach.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/thetach.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/thetach.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=826"}],"version-history":[{"count":1,"href":"https:\/\/thetach.com\/index.php?rest_route=\/wp\/v2\/posts\/826\/revisions"}],"predecessor-version":[{"id":830,"href":"https:\/\/thetach.com\/index.php?rest_route=\/wp\/v2\/posts\/826\/revisions\/830"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/thetach.com\/index.php?rest_route=\/wp\/v2\/media\/827"}],"wp:attachment":[{"href":"https:\/\/thetach.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=826"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/thetach.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=826"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/thetach.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=826"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}