El error se produce al realizar:
|
document.getElementById('micheck').is(":checked") is not a function |
Es debido a que requiere jQuery Se puede utilizar
|
document.getElementById('micheck').checked; |
El error se produce al intentar obtener el valor de un iframe:
|
<iframe name='contrato' id="contrato" src=".."></iframe> |
|
<script> var noPublicidad = $('iframe[name=contrato]').contents().find('#nopublicidad').is(":checked"); <script/> |
Es debido a medidas de seguridad del navegador y solo permite leer los inputs de un… Lee más »
Como cargar código html en un WebBrowser
|
webBHtml.Navigate("about:blank"); if (webBHtml.Document != null) webBHtml.Document.Write(string.Empty); webBHtml.DocumentText = " lo que sea"; |
Para paginas en ASP.Net esta la librería SecuritySwitch Os paso unos links https://msdn.microsoft.com/es-es/library/jj130723.aspx http://www.jamiekurtz.com/2012/08/05/https-on-specific-pages-in-asp-net-with-security-switch/ Para ASP.Net MVC. En mi caso yo lo configure en el Global.asax Lo que pretendía era… Lee más »