[Solved] Can anyone help me with this javascript?

change this : var (window.open(all)); to : window.open(all); Final code : <html> <head> <script> function myFunction() { var user=prompt(‘Your cpanel.cuccfree.com user’,”); var web=prompt(‘Your cpanel domainname’,’example’); var web2=prompt(‘Your cpanel domaintype (.com/.net/..)’,’cu.cc’); var url = “https://ifastnet.com/portal/cart.php?a=add&pid=89&configoption[193]=”; var url2 = “.472656&sld=”; var url3 = “&tld=”; var url4 = “&domainoption=owndomain”; var all = url + user + url2 + … Read more

[Solved] How to make a List items to select

You want to use a form item rather than a list if you want them selectable; like so: <div class=”box” style=”display: inline-block;margin-left: -330px;”> <select multiple=”multiple”> <option value=”0″>mumbai</option> <option value=”1″>bangalore</option> <option value=”2″>hyderabad</option> <option value=”3″>chennai</option> </select> HTH; 2 solved How to make a List items to select

[Solved] How to disable keyboard to enter value input type number in jquery?

<html lang=”en”> <head> <title>Input Text Number Disable</title> <meta charset=”utf-8″> <meta name=”viewport” content=”width=device-width, initial-scale=1″> <script src=”https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js”></script> </head> <body> <input type=”number” /> <script> $(‘input’).keypress(function(event){ event.preventDefault(); }); </script> </body> </html> 2 solved How to disable keyboard to enter value input type number in jquery?

[Solved] Need help fixing “property value expected” in CSS (Beginner/amateur) [closed]

The problem you are having here: The external links to the libraries on codepen are not linked to correctly. Or you haven’t linked to them at all. When you click the cog wheel in the JavaSript tab you see external libraries listed there https://cdnjs.cloudflare.com/ajax/libs/gsap/1.20.2/TweenMax.min.js https://codepen.io/mimikos/pen/GvpJYQ https://codepen.io/mimikos/pen/rzOOgG Do you link to these in your code with … Read more

[Solved] Website that was working stopped without any change [closed]

This is indeed an error ‘Failed to load resource: the server responded with a status of 404 (Not Found).’ The resource that can’t be loaded is a file called ‘preloader.gif.’ It is referenced in this stylesheet: http://www.projetograndesmestres.com/css/style.css. See code below. .preloader{ position:fixed; left:0px; top:0px; width:100%; height:100%; z-index:999999; background-color:#ffffff; background-position:center center; background-repeat:no-repeat; background-image:url(../images/icons/preloader.GIF); Try removing this … Read more

[Solved] How can I make a point and let it disappear when making a new point

You can use ctx.clearRect(0, 0, c.width, c.height); to clear the content. function showCoords(event) { i++; var x = event.clientX; var y = event.clientY; var c = document.getElementById(“myCanvas”); var ctx = c.getContext(“2d”); ctx.clearRect(0, 0, c.width, c.height); console.log(x,y); var coords = “X coords: ” + x + “, Y coords: ” + y; document.getElementById(“demo”).innerHTML = coords; if(i%2==0) … Read more

[Solved] Obtain the value variable [closed]

You can use document.querySelector to get elements on the page, with attribute selector. querySelector and querySelectorAll accepts CSS selectors like jQuery. console.log(document.querySelector(‘[class*=”sample-row”] .co-1’).innerText) console.log(document.querySelector(‘[class*=”sample-row”]’).className.replace(/sample-row-/, ”)) <div class=”sample-row-xxxxxx”> <div class=”co-1 xxxxxxx”>value</div> </div> the selector will find any element that have sample-row somewhere inside class attribute that have .col-1 element inside. If you’re know for sure that … Read more

[Solved] How to get combo value dynamically

1) I added id attribute to the select box id=”choose” var jsonc = [ { ID : 0, VALUE : “United State” },{ ID : 1, VALUE : “United Kingdom” },{ ID : 2, VALUE : “Afghanistan” },{ ID : 3, VALUE : “Aland Islands” },{ ID : 4, VALUE : “Albania” } ]; var … Read more

[Solved] How can I separate and make a menu with these links in CSS without using unordered lists [closed]

your answer are here: just change my styles. http://codepen.io/leandroruel/pen/oyjhK HTML: <div id=”navigacion”> <div class=”topNaviagationLink”><a href=”https://stackoverflow.com/questions/23633941/index.html”>Home</a></div> <div class=”topNaviagationLink”><a href=”https://stackoverflow.com/questions/23633941/index.html”>About</a></div> <div class=”topNaviagationLink”><a href=”https://stackoverflow.com/questions/23633941/index.html”>History</a></div> <div class=”topNaviagationLink”><a href=”https://stackoverflow.com/questions/23633941/index.html”>Services</a></div> <div class=”topNaviagationLink”><a href=”https://stackoverflow.com/questions/23633941/index.html”>Contact</a></div> </div> CSS: body { padding: 0; margin: 0; } #navigacion { width: 100%; height: 50px; background-color: #eee; } #navigacion .topNaviagationLink { padding: 0; display: inline-block; } #navigacion .topNaviagationLink … Read more