5,277 Posted Topics
Re: So you most likely are going to have a tough time finding a hosting provider that will have this option in a shared hosting solution. You may need to subscribe to a dedicated hosting solution where the provider allows you more flexibility in what can be installed on the server. | |
Re: I also encountered an issue on another page but it cleared up once I refreshed the page. About an hour ago. Something to do with a geoip file or something like that. I should have copied the error... | |
Re: Also, the cable may be fine, just loose on either end. Make sure that both ends of the video cable are secure. | |
Re: Is this a code snippet you are sharing or is there something wrong with the code you need help with? [edit] - i just copied and pasted your code in an html file...nice job! very cool. | |
Re: Some of these webcams also have built in microphones. I'd suggest you consider unplugging the webcam altogether. | |
![]() | |
Re: Hello and welcome. You'll find that many members will be willing to share experience and ideas here. | |
Re: Hello and welcome. I used to build PCs and sell them to my customers years ago. It was fun but Dell and others just made it more difficult for me to make it worth my time so then I sold Dells and charges a "setup" fee. :-) | |
Re: BIND nor any other DNS server service isn't required if you simply want to resolve a few hostnames from a single PC. You can simply continue to add these hostnames to your PC's hosts file. All of these hostnames will map to the same IP address. If the target server … | |
Re: Do you have the ability to generate the HTML code where you can assign a class to those hyperlinks that point directly to directories? Then use a CSS class selector in a similar manner? | |
Re: If you are referring to data types when referring to the answer, if you are using MSSQL, there is a data type called SQL Variant and its common for the use of storing different types of data. | |
Re: One option is to restore your PC back to the factory image. You can install 32bit apps on a Win8 x64 OS. | |
Re: You can validate the form client side using javascript. What exactly are you trying to validate... Form filled, specific range of values, etc..???? ![]() | |
Re: I beleive the selector is incorrect in your example. If you are trying to select those elements with a class of "tab-switch", it should be... `$('.tab-switch')` This selector `$('.tab-switch a')` will locate elements with a class of 'tab-switch', that have a "child" element of type anchor `<a/>`. For example... <div … | |
| |
Re: The easiest way to add an image is via HTML, using the `<img/>`element. However, you can assign a background image to certain elements. I don't think there is a right or wrong.. What are you trying to accomplish? | |
Re: You can including a `<meta/>` element within your `<head/>` section. <head> <meta name="description" content="This description will often show up in search results."> </head> | |
Re: Night and day. The differences can easily fill a chapter of a book, but here is a high level summary of some of the differences. ASP, like PHP, mixes both HTML code and ASP code on the same page. ASP can uses VBScript (but can also use JavaScript) to execute … | |
Re: > plz how can i know whats my network architecture type (physical or logical)? and what topology used in it (star,bus,ring)?!! A network will have both a physical and logical implementation. The physical deals with the actual physical layout of the network (cables, equipment, etc..), while the logical deals with … | |
Re: Try this... Save the value to an input element of type "hidden" from your PHP code. The information wont be visible but it will be accessible client side. Then client side, grab the value using jQuery assign it to a variable then work with that variable in your Ajax routine. | |
Re: I accessed the site from a few computers and the page loaded and responded ok. I ran a test on this site: http://www.webpagetest.org/ and the results show that some improvements can be made. See results: http://www.webpagetest.org/result/130208_V2_TDM/ | |
Re: My favorite browser is Chrome. Seems to render content fast, correct and seems to have the most support for HTML5/CSS3. I try to avoid IE at all costs. I'm not a Microsoft 'hater', MS has blessed me with a very fruitful career. I just do not care for IE. I … | |
Re: While I'm not a fan of IE, the suggestion to install another browser doesn't address the actual issue. What URLs are you being redirected to? just new tabs? Does this happen to any other local app? Its possible that you have some malware installed. I'd recommend that you perform some … | |
Re: If a person only has HTML and CSS knowledge, then I would say no. You sould note that we do not promote or share knowledge regarding exploiting vulnerabilities on this site. | |
Re: You can still have one function called "clicky". Just pass the URL to the function as well... <html> <head> <script type="text/javascript"> function clicky(param){ location.href = param; } </script> </head> <body> <button onclick="clicky('http://www.daniweb.com');">Next</button> <button onclick="clicky('http://www.other.com');">Another Button..</button> </body> </html> | |
Re: I don't see how an acceptable answer can be provided based on your question. To explain what TCP/IP is would fill chapters of books. In a nutshell, its a protocol that can be used on a network for hosts to communicate with each other. > how can I solve DNS … | |
Re: You can do this with simple AJAX or use the jQuery AJAX shorthand methods ($.ajax, $.get, $.post, etc...) depending on exactly what you need to send and if you will be doing something will a result... | |
Re: Is there more code? When looking at your function, the first thing that comes to mind is that you are referencing `name.val()`. What does this object represent? An input element? Where is the assignmnet of this element to a variable? | |
Re: > You mean like integrated debugging? I'm not sure that that works. I dont believe so either. > However i want to know can i use apache web server with visual studio 2010 express IDE or not? You can develop your site using Visual Studio... or course.. why not? Eventually … | |
Re: i'm not sure what you mean by gray border "goes all the way to the right"? can you clarify... upload a pic with notation as to what you mean? | |
Re: What's the error? Its not evident when I click on your link. I dont know how your web app is expected to behave... | |
Re: I'm sure I'm much older than you. I assure you that those individuals in life that constantly try cutting corners either get nowhere or if they do its temporary. Life will eventually teach them hard lessons... ![]() | |
![]() | Re: > 1) Which kind of 'Networking Applications' are we talking about? Unlike JavaScript, server side code can do things like connect to a remote host over the network. Such as send an ICMP request, perform a DNS lookup, query a SQL server, etc.. This is a limitation of JavaScript. ![]() |
Re: This is because you are showing/hiding client side. If you want to alter the HTML output of a certain page, it would require server-side scripting. | |
Re: hello and welcome.. Everyone has to start somewhere. You found the right place... | |
Re: It depends. It's a good practice to consolidate your scripts if possible. Saves on downloading time. However, you also wouldn't want one big fat file to download if the current page only uses 10% of the code in the external file. In my case I do a lot of internal … | |
Re: What exactly do you need help with? You need to be a bit more specific as to the error you are getting or help that you need. What do you specifically mean by "add another toggle button"? |
The End.