5,277 Posted Topics
Re: Can you elaborate a bit more on what you are trying to do and what the actual problem is? I took a look at your jsfiddle example, but I'm not understanding what you mean by what is wrong? | |
Re: Looks like this is either coming from group policy or local policy. Is this computer part of a domain? Does it belong to someone else and they gave it to you? This policy restriction is not default out of the box. Its on purpose. Being an admin is irrelevant. | |
Re: >Am I missing something? He was providing an example of what he wants to do. It seems to me he's looking for guidance on how to incorporate that less..more functionaility into the code example that he pasted above. ![]() | |
Re: Here is a very simple example without a loop. <!DOCTYPE html> <html> <head> <title>Demo</title> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script> </head> <body> <input type="text" id="txtBox1" /><br/> <input type="text" id="txtBox2" /><br/> <input type="text" id="txtBox3" /><br/> <input type="text" id="txtBox4" /><br/> <input type="text" id="txtBox4" /><br/> <button id="btn1">Clear</button> <script> $('#btn1').click(function(){ $('input').val(""); }); </script> </body> </html> | |
Re: Just to provide you with an additional option that you may have not considered, google has a product called CSE (custom search engine) that you can use to integrate a search feature in your site. If you want to see how it works, use the search feature on DaniWeb. I … | |
Re: Try this... <!DOCTYPE html> <html> <head> <title>Your Title</title> <style> #myDiv { background: url("overlayArrow_03.png") no-repeat scroll -20px 0 rgba(0, 0, 0, 0); border: 1px solid #0000FF; height: 150px; left: 35px; position: absolute; top: 217px; width: 300px; } </style> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> </head> <body> <button id="btn1">Click</button> <div id="myDiv"></div> <script> $("#btn1").click( function() { $('#myDiv').css({ … | |
| |
Re: Within your head section...try <style> body { background-color:#ffffff; background-image = url('image.jpg') background-repeat:no-repeat; background-attachment:fixed; background-position:center; background-size:cover; } </style> Remove the style attribute from your body element. | |
Re: >but it refreshes and goes away again HTTP is stateless. every time the page is refreshed, its a new page. Since you are making changes via javascript client side, when you refresh the page, the HTML that is stored in the page is sent back to the browser. The dynamic … | |
Re: This is asp.net, not asp. So, you havent provided enough information for anyone really to assist you other than giving you a link to go some where else to find examples. Do you have any code written so far that we can help you with? If not, to get you … | |
Re: If you are new to web design/web dev, it's going to be difficult hot to explain step by step on how to build a navigation menu. There are a variety of ways to do it. If you do a search online, you will find examples built on with CSS, others … | |
Re: Hello Shalomd, If you can provide the code you have so far, that would be helpful so the members on this site can help you with the exact issue you are having. What does "should be displayed in 4 text boxes mean"? ![]() | |
Re: Can you provide more information starting with what the error you are getting is? | |
Re: Does it correct itself after a reboot? | |
Re: Seems like you may have a problem with your Windows Update component. See these two discussions on TechNet: http://social.msdn.microsoft.com/Forums/vstudio/en-US/afeabac0-86d7-4ef1-a630-75c9e5f73663/cant-install-microsoft-framework-4-error-code-0xc8000222?forum=netfxsetup http://social.technet.microsoft.com/Forums/windows/en-US/d0e5083a-7615-474e-a70c-82cff9f6d5e8/final-result-installation-failed-with-error-code-0xc8000222 | |
Re: This is because your button is within the form and it is causing a postback. When the page reloads the element returns back to its color. Your server side code has no knowledge that you changed the color because that happened client side. If you don't want the postback you … | |
Re: Change line 3 to: `toHash &= Session("""fac_cntnaam_tsv""") & " " & Session("""fac_cntnaam""") & Session("""bdr_fac_cntnaam_tsv""") & " " & Session("""bdr_fac_cntnaam""")` | |
Re: It would help if you provide a sample of your relevant code | |
Re: I would take the time to refresh your HTML and CSS. From there... HTML5 --> CSS3 --> JavaScript --> AJAX --> jQuery --> server side scripting (PHP, ASP.NET, etc ) with SQL. Participate in the forums. Ask questions and try to solve other peoples issues. Your best bet is to … | |
Re: Multiple ways to resolve this. its hard, at leat for me, without actually having your background image file for the nav bar to test it since this requires precise positioning. One option is to add another div inside your navbar div, `<div id="tabs"></div>`, then style that div so that its … | |
Re: Maybe i missed it while looking at the source code, but I dont see where you included the HTML5Shiv. <!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> | |
Re: You can also remove the height property all together. Then adjust the line-height from 14px to 15px to accomodate the charaters. 14px is too restrictive. | |
Re: >so how do we edit the new IP so that it points to new ip Edit what? I assume you mean the DNS record? If so, you need to contact your DNS administrator so that the DNS record can be updated to reflect the new IP address. | |
| |
Re: >Do I really need to apply the condition in asp.net or in C# So to clarify, asp.net is a framework. C# is one of the many languages that target the .NET Framework. Ok, so if you want to use a code nugget, or Embedded Code Block within your aspx page, … | |
Re: So, doing this client side would be best so you dont have to use PHP on each postback to check/assign the values.. If you want simple, use jQuery... here is an example of one way to do this... <!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"> </script> </head> <body> UserName: <input id="txtUsername" … | |
Re: What do you mean? Your reference to overview is not clear. Do you have a specific question | |
Re: In addition to stbuchok's suggestion, on line 17, remove the single quotes around the n. n is a variable. The single quotes will treat it as a string. Should be.. `document.getElementById("result").innerHTML=n;` | |
Re: So to add to diafol's comments, with regard to images the alt tag is not only important for SEO but also for also for users with visual disabilities. The alt tag should be used to populate text that is a description of the image. The text can then be read … ![]() | |
Re: A few different ways to handle.. here is one approach.. <div class="italic" style="position:relative"> <img style="position:relative;top:8px;left:0px;" src="images/detail_quotegreen.jpg" width="30" height="30" border="0" alt="Continuing Day Treatment Program"> Ten years ago, when my eighteen-year-old son suffered from yet another mental health episode, my wife and I were torn trying to decide whether or not to … | |
Re: I'm not sure if I fully understand. Are you not able to build your image elemenet at the time that you pull information from your mysql data source? If for some reason you cant write the html at that time, are you able to write the data maybe to a … | |
Re: Its possible to trigger certain events to happen without user intervention. If you provide more information and relevant code, the community may be able to help or offer some guidance. | |
Re: if the chrome image in the correct place, as iamthwee suggests, you javascript or jQuery to change the source attribute of the image element. here --> `<img align="middle name="photo" width="100" height="100" src="http://www.w3schools.com/images/compatible_chrome.gif" />` | |
Re: >my internet only works after i do a system restor What happens after you do the system restore? if works for how long? what event occurs for it to stop working? did you recently install anything? | |
Re: Sorry Dani :( I've gone through this as well. It is heart breaking. ![]() | |
Re: Normally i'd agree with drjohn about using tables for the purpose of presentation, but in your case, you are already using tables to display data so I dont see an issue with you wrapping the tables in another table. Anyway, the div concept with the float is definately good. There … | |
Re: You'd have to show some of your sample code so we can get a better understanding of the problem. | |
Re: Building a domain is more complicated than just a simple reply. What help do you need? What have you done so far? | |
Re: back in the day, I would use the **call** command to run an additional batch program and wait until it was completed before continuing the current program. Not sure if it will work for you in this case, but give it a try.. @echo on C: cd C:\Program Files\SyncToy 2.1 … |
The End.