5,277 Posted Topics

Member Avatar for Eagle.Avik

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?

Member Avatar for Eagle.Avik
0
339
Member Avatar for markharris
Member Avatar for Ritesh_4

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.

Member Avatar for JorgeM
0
128
Member Avatar for chrisschristou

>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.

Member Avatar for iamthwee
0
472
Member Avatar for tqmd1

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>

Member Avatar for Troy III
1
348
Member Avatar for micjustin33
Member Avatar for nicholson
Member Avatar for Michelle_3
Member Avatar for mcoliver88

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 …

Member Avatar for mikerock
0
268
Member Avatar for Violet_82

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({ …

Member Avatar for Violet_82
0
456
Member Avatar for Ancient Dragon
Member Avatar for nathan.pavlovsky

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.

Member Avatar for JorgeM
0
318
Member Avatar for ZeroEddy

>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 …

Member Avatar for ZeroEddy
0
253
Member Avatar for kavitha N

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 …

Member Avatar for JorgeM
0
170
Member Avatar for mahboobsrd

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 …

Member Avatar for mahboobsrd
0
184
Member Avatar for jLamp

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"?

Member Avatar for diafol
0
133
Member Avatar for ilona.pawlicka
Member Avatar for noqq
Member Avatar for Sara_6
Member Avatar for maru.ashish82

Can you provide more information starting with what the error you are getting is?

Member Avatar for Abhi009
0
109
Member Avatar for mroldan01
Member Avatar for archie.herbias

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

Member Avatar for JorgeM
0
1K
Member Avatar for kazp

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 …

Member Avatar for kazp
0
162
Member Avatar for ShArKsss

Change line 3 to: `toHash &= Session("""fac_cntnaam_tsv""") & " " & Session("""fac_cntnaam""") & Session("""bdr_fac_cntnaam_tsv""") & " " & Session("""bdr_fac_cntnaam""")`

Member Avatar for JorgeM
0
120
Member Avatar for newbie26
Member Avatar for newbie26
0
227
Member Avatar for Dharma_1

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 …

Member Avatar for Dharma_1
0
337
Member Avatar for ZeroEddy

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 …

Member Avatar for ZeroEddy
0
223
Member Avatar for bradly.spicer

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]-->

Member Avatar for JorgeM
0
185
Member Avatar for khan.arshad3

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.

Member Avatar for JorgeM
0
153
Member Avatar for manaila

>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.

Member Avatar for JorgeM
0
184
Member Avatar for lakvohra18
Member Avatar for Andrea_1
Member Avatar for Slavi
Member Avatar for imot12
Member Avatar for KrazyCod3r
Member Avatar for mherz

>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, …

Member Avatar for JorgeM
0
282
Member Avatar for nurul_1

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" …

Member Avatar for nurul_1
0
309
Member Avatar for M7mad
Re: NES

What do you mean? Your reference to overview is not clear. Do you have a specific question

Member Avatar for JorgeM
0
100
Member Avatar for menukadevinda

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;`

Member Avatar for JorgeM
0
437
Member Avatar for johmny

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 …

Member Avatar for diafol
0
246
Member Avatar for suavedesign

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 …

Member Avatar for JorgeM
0
177
Member Avatar for branding4you

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 …

Member Avatar for branding4you
0
149
Member Avatar for Suzie999

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.

Member Avatar for JorgeM
0
92
Member Avatar for tqmd1

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" />`

Member Avatar for tqmd1
0
209
Member Avatar for Bookie026

>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?

Member Avatar for Bookie026
0
179
Member Avatar for Dani

Sorry Dani :( I've gone through this as well. It is heart breaking.

Member Avatar for Warrens80
0
243
Member Avatar for nadiam

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 …

Member Avatar for nadiam
0
176
Member Avatar for Linddha
Member Avatar for Linddha
0
298
Member Avatar for alone88

Building a domain is more complicated than just a simple reply. What help do you need? What have you done so far?

Member Avatar for robert02
0
178
Member Avatar for saadi06

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 …

Member Avatar for cuzintone
0
149

The End.