[Solved] I am trying to make a login screen with javascript but it does not load when open the page

There is so much wrong with your code, this should work though. What you got wrong is: You cannot set variables using the – operator You cannot compare in an if-statement using single = You cannot name variables with numbers. var unc = false; // username correct var pwc = false; // password correct while … Read more

[Solved] Passing variables in classic ASP

You should think of the page as being built into one contiguous page, so that if you include a number of .asp files they will build up your finished page. For instance, if you have three files: File_1.asp <h1>Hello, World!</h1> File_2.asp <p>This file will be included too!</p> File_3.asp <%Dim version version = 1.1%> …and include … Read more

[Solved] Get a webpage ‘object’ in Javascript [closed]

Have a look at PhantomJS Here is an example, getting some elements from a webpage: var page = new WebPage(), url=”http://lite.yelp.com/search?find_desc=pizza&find_loc=94040&find_submit=Search”; page.open(url, function (status) { if (status !== ‘success’) { console.log(‘Unable to access network’); } else { var results = page.evaluate(function() { var list = document.querySelectorAll(‘span.address’), pizza = [], i; for (i = 0; i … Read more