{"id":6799,"date":"2012-08-31T11:46:31","date_gmt":"2012-08-31T06:16:31","guid":{"rendered":"https:\/\/2thenew.xyz\/blog\/?p=6799"},"modified":"2016-12-19T14:46:58","modified_gmt":"2016-12-19T09:16:58","slug":"common-jsphml-javascript-problems","status":"publish","type":"post","link":"https:\/\/2thenew.xyz\/blog\/common-jsphml-javascript-problems\/","title":{"rendered":"Common JSP\/HTML &amp; Javascript Problems"},"content":{"rendered":"<p>Some of the commonly faced problems are:<\/p>\n<p>1) In case we give  different width combinations for cells of different rows, the width  combination of first row is accepted and subsequent combinations are  neglected.<\/p>\n<p>[html]<\/p>\n<p>&amp;amp;lt;tr&amp;amp;gt;<br \/>\n&amp;amp;lt;td width=&amp;amp;quot;30%&amp;amp;quot;&amp;amp;gt;1.1&amp;amp;lt;\/td&amp;amp;gt;<br \/>\n&amp;amp;lt;td width=&amp;amp;quot;50%&amp;amp;quot;&amp;amp;gt;1.2&amp;amp;lt;\/td&amp;amp;gt;<br \/>\n&amp;amp;lt;td width=&amp;amp;quot;20%&amp;amp;quot;&amp;amp;gt;1.3&amp;amp;lt;\/td&amp;amp;gt;<br \/>\n&amp;amp;lt;\/tr&amp;amp;gt;<\/p>\n<p>&amp;amp;lt;tr&amp;amp;gt;&amp;amp;lt;td width=&amp;amp;quot;50%&amp;amp;quot;&amp;amp;gt;2.1&amp;amp;lt;\/td&amp;amp;gt;<br \/>\n&amp;amp;lt;td width=&amp;amp;quot;40%&amp;amp;quot;&amp;amp;gt;2.2&amp;amp;lt;\/td&amp;amp;gt;<br \/>\n&amp;amp;lt;td width=&amp;amp;quot;10%&amp;amp;quot;&amp;amp;gt;2.3&amp;amp;lt;\/td&amp;amp;gt;<br \/>\n&amp;amp;lt;\/tr&amp;amp;gt;<\/p>\n<p>[\/html]<\/p>\n<p>In this case width of first, second and third cell would be 30%, 50% and 20% for both the rows.<\/p>\n<p>2) If we have defined width combinations for first row cells and we  use  both colspan and width attribute for cell of other row, then width   attribute becomes ineffective.<\/p>\n<p>If we want to have table as shown above, we can have each row with   one cell and each of the cells would have a table with single row. That   ways, the cells of the row can be arranged as per our specifications  and  requirements.<\/p>\n<p>[html]<\/p>\n<p>&amp;amp;lt;tr&amp;amp;gt;<br \/>\n&amp;amp;lt;td&amp;amp;gt;<br \/>\n&amp;amp;lt;table border=&amp;amp;quot;2px&amp;amp;quot; width=&amp;amp;quot;100%&amp;amp;quot;&amp;amp;gt;<br \/>\n&amp;amp;lt;tr&amp;amp;gt;<br \/>\n&amp;amp;lt;td width=&amp;amp;quot;80%&amp;amp;quot;&amp;amp;gt;New&amp;amp;lt;\/td&amp;amp;gt;<br \/>\n&amp;amp;lt;td width=&amp;amp;quot;20%&amp;amp;quot;&amp;amp;gt;Few&amp;amp;lt;\/td&amp;amp;gt;<br \/>\n&amp;amp;lt;\/tr&amp;amp;gt;<br \/>\n&amp;amp;lt;\/table&amp;amp;gt;<br \/>\n&amp;amp;lt;\/tr&amp;amp;gt;<\/p>\n<p>&amp;amp;lt;tr&amp;amp;gt;<br \/>\n&amp;amp;lt;td&amp;amp;gt;<br \/>\n&amp;amp;lt;table border=&amp;amp;quot;2px&amp;amp;quot; width=&amp;amp;quot;100%&amp;amp;quot;&amp;amp;gt;<br \/>\n&amp;amp;lt;tr&amp;amp;gt;<br \/>\n&amp;amp;lt;td width=&amp;amp;quot;40%&amp;amp;quot;&amp;amp;gt;New&amp;amp;lt;\/td&amp;amp;gt;<br \/>\n&amp;amp;lt;td width=&amp;amp;quot;60%&amp;amp;quot;&amp;amp;gt;Few&amp;amp;lt;\/td&amp;amp;gt;<br \/>\n&amp;amp;lt;\/tr&amp;amp;gt;<br \/>\n&amp;amp;lt;\/table&amp;amp;gt;<br \/>\n&amp;amp;lt;\/td&amp;amp;gt;<br \/>\n&amp;amp;lt;\/tr&amp;amp;gt;<\/p>\n<p>[\/html]<\/p>\n<p>3) One of very common problems that we face in when working with   javascript is that we do not get to know what error exactly occurred if   the script is not working as expected. We can use try-catch blocks,  just  as we do in java.<\/p>\n<p>A very basic example:<\/p>\n<p>[js]<\/p>\n<p>function division(){<br \/>\ntry{<br \/>\nvar c = 1\/x;<br \/>\nalert(c);<br \/>\n}<\/p>\n<p>catch(e){<br \/>\nalert(&amp;amp;lt;a href=&amp;amp;quot;http:\/\/e.name&amp;amp;quot; target=&amp;amp;quot;_blank&amp;amp;quot;&amp;amp;gt;e.name&amp;amp;lt;\/a&amp;amp;gt; + &amp;amp;quot; &amp;amp;quot; + e.message)<br \/>\n}<br \/>\n}<\/p>\n<p>[\/js]<\/p>\n<p>Some javascript errors and their description:<\/p>\n<p>Hope it helps. \ud83d\ude42<\/p>\n<p>Regards.<\/p>\n<p>Vivek Sachdeva<\/p>\n<p>vivek.sachdeva@intelligrape.com<\/p>\n<p>@vivek_sach<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Some of the commonly faced problems are: 1) In case we give different width combinations for cells of different rows, the width combination of first row is accepted and subsequent combinations are neglected. [html] &amp;amp;lt;tr&amp;amp;gt; &amp;amp;lt;td width=&amp;amp;quot;30%&amp;amp;quot;&amp;amp;gt;1.1&amp;amp;lt;\/td&amp;amp;gt; &amp;amp;lt;td width=&amp;amp;quot;50%&amp;amp;quot;&amp;amp;gt;1.2&amp;amp;lt;\/td&amp;amp;gt; &amp;amp;lt;td width=&amp;amp;quot;20%&amp;amp;quot;&amp;amp;gt;1.3&amp;amp;lt;\/td&amp;amp;gt; &amp;amp;lt;\/tr&amp;amp;gt; &amp;amp;lt;tr&amp;amp;gt;&amp;amp;lt;td width=&amp;amp;quot;50%&amp;amp;quot;&amp;amp;gt;2.1&amp;amp;lt;\/td&amp;amp;gt; &amp;amp;lt;td width=&amp;amp;quot;40%&amp;amp;quot;&amp;amp;gt;2.2&amp;amp;lt;\/td&amp;amp;gt; &amp;amp;lt;td width=&amp;amp;quot;10%&amp;amp;quot;&amp;amp;gt;2.3&amp;amp;lt;\/td&amp;amp;gt; &amp;amp;lt;\/tr&amp;amp;gt; [\/html] In this case width of [&hellip;]<\/p>\n","protected":false},"author":48,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":7,"footnotes":""},"categories":[1],"tags":[4842,55,905,906,887],"class_list":["post-6799","post","type-post","status-publish","format-standard","hentry","category-technology","tag-html","tag-javascript","tag-jsp","tag-try","tag-try-catch"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Some of the commonly faced problems are: 1) In case we give different width combinations for cells of different rows, the width combination of first row is accepted and subsequent combinations are neglected. [html] 1.1 1.2 1.3 2.1 2.2 2.3 [\/html] In this case width of\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Vivek Sachdeva\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.xyz\/blog\/common-jsphml-javascript-problems\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"Common JSP\/HTML &amp; Javascript Problems | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"Some of the commonly faced problems are: 1) In case we give different width combinations for cells of different rows, the width combination of first row is accepted and subsequent combinations are neglected. [html] 1.1 1.2 1.3 2.1 2.2 2.3 [\/html] In this case width of\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.xyz\/blog\/common-jsphml-javascript-problems\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Common JSP\/HTML &amp; Javascript Problems | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Some of the commonly faced problems are: 1) In case we give different width combinations for cells of different rows, the width combination of first row is accepted and subsequent combinations are neglected. [html] 1.1 1.2 1.3 2.1 2.2 2.3 [\/html] In this case width of\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/common-jsphml-javascript-problems\\\/#article\",\"name\":\"Common JSP\\\/HTML & Javascript Problems | TO THE NEW Blog\",\"headline\":\"Common JSP\\\/HTML &amp; Javascript Problems\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vivek-sachdeva\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2012-08-31T11:46:31+05:30\",\"dateModified\":\"2016-12-19T14:46:58+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/common-jsphml-javascript-problems\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/common-jsphml-javascript-problems\\\/#webpage\"},\"articleSection\":\"Technology, HTML\\\/UI\\\/CSS, javascript, jsp, try, Try catch\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/common-jsphml-javascript-problems\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"position\":2,\"name\":\"Technology\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/common-jsphml-javascript-problems\\\/#listItem\",\"name\":\"Common JSP\\\/HTML &amp; Javascript Problems\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/common-jsphml-javascript-problems\\\/#listItem\",\"position\":3,\"name\":\"Common JSP\\\/HTML &amp; Javascript Problems\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vivek-sachdeva\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vivek-sachdeva\\\/\",\"name\":\"Vivek Sachdeva\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/common-jsphml-javascript-problems\\\/#authorImage\",\"url\":\"https:\\\/\\\/newersworld-sf-static.tothenew.net\\\/prod\\\/profilePicFolder\\\/e4057f7b-4721-48dd-a0f9-df1b70a274c4_vivek.sachdeva@tothenew.com.jpg\",\"width\":96,\"height\":96,\"caption\":\"Vivek Sachdeva\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/common-jsphml-javascript-problems\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/common-jsphml-javascript-problems\\\/\",\"name\":\"Common JSP\\\/HTML & Javascript Problems | TO THE NEW Blog\",\"description\":\"Some of the commonly faced problems are: 1) In case we give different width combinations for cells of different rows, the width combination of first row is accepted and subsequent combinations are neglected. [html] 1.1 1.2 1.3 2.1 2.2 2.3 [\\\/html] In this case width of\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/common-jsphml-javascript-problems\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vivek-sachdeva\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vivek-sachdeva\\\/#author\"},\"datePublished\":\"2012-08-31T11:46:31+05:30\",\"dateModified\":\"2016-12-19T14:46:58+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Common JSP\/HTML & Javascript Problems | TO THE NEW Blog","description":"Some of the commonly faced problems are: 1) In case we give different width combinations for cells of different rows, the width combination of first row is accepted and subsequent combinations are neglected. [html] 1.1 1.2 1.3 2.1 2.2 2.3 [\/html] In this case width of","canonical_url":"https:\/\/2thenew.xyz\/blog\/common-jsphml-javascript-problems\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.xyz\/blog\/common-jsphml-javascript-problems\/#article","name":"Common JSP\/HTML & Javascript Problems | TO THE NEW Blog","headline":"Common JSP\/HTML &amp; Javascript Problems","author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/vivek-sachdeva\/#author"},"publisher":{"@id":"https:\/\/2thenew.xyz\/blog\/#organization"},"datePublished":"2012-08-31T11:46:31+05:30","dateModified":"2016-12-19T14:46:58+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/2thenew.xyz\/blog\/common-jsphml-javascript-problems\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/common-jsphml-javascript-problems\/#webpage"},"articleSection":"Technology, HTML\/UI\/CSS, javascript, jsp, try, Try catch"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.xyz\/blog\/common-jsphml-javascript-problems\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog#listItem","position":1,"name":"Home","item":"https:\/\/2thenew.xyz\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/2thenew.xyz\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/common-jsphml-javascript-problems\/#listItem","name":"Common JSP\/HTML &amp; Javascript Problems"},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/common-jsphml-javascript-problems\/#listItem","position":3,"name":"Common JSP\/HTML &amp; Javascript Problems","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/2thenew.xyz\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/2thenew.xyz\/blog\/"},{"@type":"Person","@id":"https:\/\/2thenew.xyz\/blog\/author\/vivek-sachdeva\/#author","url":"https:\/\/2thenew.xyz\/blog\/author\/vivek-sachdeva\/","name":"Vivek Sachdeva","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.xyz\/blog\/common-jsphml-javascript-problems\/#authorImage","url":"https:\/\/newersworld-sf-static.tothenew.net\/prod\/profilePicFolder\/e4057f7b-4721-48dd-a0f9-df1b70a274c4_vivek.sachdeva@tothenew.com.jpg","width":96,"height":96,"caption":"Vivek Sachdeva"}},{"@type":"WebPage","@id":"https:\/\/2thenew.xyz\/blog\/common-jsphml-javascript-problems\/#webpage","url":"https:\/\/2thenew.xyz\/blog\/common-jsphml-javascript-problems\/","name":"Common JSP\/HTML & Javascript Problems | TO THE NEW Blog","description":"Some of the commonly faced problems are: 1) In case we give different width combinations for cells of different rows, the width combination of first row is accepted and subsequent combinations are neglected. [html] 1.1 1.2 1.3 2.1 2.2 2.3 [\/html] In this case width of","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.xyz\/blog\/common-jsphml-javascript-problems\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/vivek-sachdeva\/#author"},"creator":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/vivek-sachdeva\/#author"},"datePublished":"2012-08-31T11:46:31+05:30","dateModified":"2016-12-19T14:46:58+05:30"},{"@type":"WebSite","@id":"https:\/\/2thenew.xyz\/blog\/#website","url":"https:\/\/2thenew.xyz\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/2thenew.xyz\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"Common JSP\/HTML &amp; Javascript Problems | TO THE NEW Blog","og:description":"Some of the commonly faced problems are: 1) In case we give different width combinations for cells of different rows, the width combination of first row is accepted and subsequent combinations are neglected. [html] 1.1 1.2 1.3 2.1 2.2 2.3 [\/html] In this case width of","og:url":"https:\/\/2thenew.xyz\/blog\/common-jsphml-javascript-problems\/","og:image":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Common JSP\/HTML &amp; Javascript Problems | TO THE NEW Blog","twitter:description":"Some of the commonly faced problems are: 1) In case we give different width combinations for cells of different rows, the width combination of first row is accepted and subsequent combinations are neglected. [html] 1.1 1.2 1.3 2.1 2.2 2.3 [\/html] In this case width of","twitter:image":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"6799","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","og_object_type":"blog","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":"","og_article_tags":"","twitter_use_og":false,"twitter_card":"summary","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":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"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":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-30 08:10:00","updated":"2024-02-29 10:55:24","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.xyz\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.xyz\/blog\/category\/technology\/\" title=\"Technology\">Technology<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tCommon JSP\/HTML &amp; Javascript Problems\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.xyz\/blog"},{"label":"Technology","link":"https:\/\/2thenew.xyz\/blog\/category\/technology\/"},{"label":"Common JSP\/HTML &amp; Javascript Problems","link":"https:\/\/2thenew.xyz\/blog\/common-jsphml-javascript-problems\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/6799","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/users\/48"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/comments?post=6799"}],"version-history":[{"count":0,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/6799\/revisions"}],"wp:attachment":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/media?parent=6799"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/categories?post=6799"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/tags?post=6799"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}