6,558 Topics
| |
I am currently developing a Simon says type game using jquery and javascript. I have linked a fully copy of the game on github Github download and unzip to see the game fully https://github.com/Jamiex304/Simon_Says_Game_Demo And I have reached a problem I want to add a timer that the player can … | |
I want to get this picture [Click Here](http://i.imgur.com/hCeF8pl.jpg) to look like the picture on this website [Click Here](http://www.weblup.weebly.com). It looks cropped almost because it doesn't look scaled or anything, but I know it's not cropped because I got the image off of this website. So any ideas. I tried to … | |
Hello, I want to know about the css breakpoints i searched on internet and get too many confusing results. What my requirements are to place only 3 breakpoints which are as follow to get the screen width of desktops and laptops then to get screen width of tabs and ipads: … | |
Hello Friends, please check the bug in the following code, when I hover over on (.currency li a:hover) the child "ul" display. but when I hover over child "ul" it hides. What Happen please explain me. thanks HTML: <ul class="currency"> <li> <a href="#" title=""> Currency <i class="fa fa-check"></i></a> <ul> <li><a … | |
Hi all, I'm quite rusty at this but volunteered to build a site. Although this will be a momentary quick fix to have a site running, I'd like to have the menu fetched from a different html file which I already created but somehow it doesn't show. The menu lays … | |
Good Afternoon, I'm stuck in the last part of the assignment, can anyone help me out. The assignment is the following: Create an HTML page with a list of four list items (ordered or unordered), and create a text box and button. When the button is clicked, if there is … | |
this is my modal button this is within the table that why i use echo $rows['id'] <a data-id="<?php echo $rows['id']; ?>" type="button" class="btn btn-success btn-lg btn-block" data-toggle="modal" data-target="#myModal">View Order</a> this is my modal body <?php include('../conn.php'); $id=$_GET['id']; $list_query=mysql_query("select * from db where id='$id'"); $rows=mysql_fetch_array($list_query); ?> <form class="form-horizontal orderitem" role="form"> <div … | |
Hi all, I am converting an XML document to HTML/PDF. I use some of the Twitter Bootstrap 3 classes for layout, but since I pretty much go directly to PDF I have removed most of bootstrap's css (since I am not looking for a responsive layout, I want it to … | |
Say i have a html5 vedio with mouse hovering of pausing and running in relation to cursor and code is working finely.I useing code as: from.js: // something along that var vid = document.getElementsByTagName("video"); [].forEach.call(vid, function (item) { item.addEventListener('mouseover', hoverVideo, false); item.addEventListener('mouseout', hideVideo, false); }); function hoverVideo(e) { this.play(); } … | |
[CODE] .content { padding:24px 0 40px; Width:100%; } .content_left { float :left ; width:15%; } .content_second_left { margin-left:15%; width :20%; background-color :Black; } .content_third_left { margin-left:35%; width :50%; background-color :Red; float :left ; } .content_right { margin-left :85%; width:15%; } [/CODE] [CODE] <div class="content"> <div class ="content_second_left" > <asp:ContentPlaceHolder ID … | |
Hi Everyone, Thank you for viewing. I would like to check how to disbale HTML button in c#? Can anyone advise on this? | |
HAI everybody, `` I am working on a Google API to obtain the contacts of users at my website, and I obtained a result using like this, but I wish wish to have the contacts out of the whole chunk. I just wanna know , how can I parse values … | |
Hello! Anyone here can explain me please how to create a website that with pages and that works like blogger or wordpress. (I mean, for example: the page have a post limit by 6 post's. if I post something new on my website I want that the first post move … | |
Run two calls to a function simultaneously with this threading @background decorator. | |
If I have a form as in the below script: <html> <?php session_start(); $con=mysqli_connect("localhost","root","","QSTNS"); if (mysqli_connect_errno()) { echo "Failed to connect to MySQL: " . mysqli_connect_error(); } $dsply=$_SESSION['q_indx'][$_SESSION['cindx']] ; //echo $dsply ; $qstn = mysqli_query($con,"SELECT * FROM qstns where qid = '". $dsply ."'"); $qstn = $qstn->fetch_array(MYSQLI_ASSOC); //echo $qstn['qname'] . … | |
Hi everybody, I have a file with some tags like html. *<instance id="bass.1000000" docsrc = "BNC/A0C"> <answer instance="bass.1000000" senseid="bass%fish"/> <context> Try it with grilled sea <head>bass</head> and fennel. </context> </instance>* I need to parse it and retrieve some information like id and senseid in answer tag. How can I do … | |
hi all , Let us discuss which are the new technology are using in the web development what the feature of this technology and this technology has the feature or not what its advantage using this from the late technology so more basic technology i know is html html5 css … | |
I need to change the background image of a button that is declared in xaml, like this: <Button x:Name="btnBorder" Content="Moldura" Width="80" Height="80" Margin="10,6,10,6" Click="btnBorder_Click" > <Button.Background> <ImageBrush ImageSource="/Images/arrow-expand.png" AlignmentX="Center" Stretch="None" x:Name="imgSourceArrow" /> </Button.Background> </Button> and I'm trying to change the ImageSource of the ImageBrush. For that, I'm using this code … | |
Hi all! This is my frist discussion. I'm shearing you a very helpfull website that helping me to learn HTML,CSS,Javascrift online. It's w3schools Wish it will help you. | |
Greetings im new in laravel and i want to learn how to show the html page in laravel. My laravel's location is: C:/wamp/www/laravel The location of the page that i want to view: C:/wamp/www/laravel/app/views/hello.php I tried localhost/wamp/www/laravel/app/views/hello.php but it only gives me an error: The requested URL /wamp/www/laravel/app/views/hello.php was not … | |
Hi, say I have `<input type="checkbox" id="box1" />` and `<div id="createhere"></div>` and in a javascript file I have: function(){ var box=document.getElementById("box").checked; var s = ""; if(box){ s = "<input type="text" name="text" id="text" />" document.getElementById("createhere").innerHTML = s; }else{ s = ""; document.getElementById("createhere").innerHTML = s; } } Now this works BUT it … | |
Hi, so i found this topic on forum.jquery [Click Here](https://forum.jquery.com/topic/is-it-possible-to-set-id-to-dynamically-created-div) and there is a way to set and ID for a dynamically created div (copy paste from the forum): var x=3,y=3 for (var i=0; i<x; i++){ var line=$('<div>', {id:"X"+i } ).css({clear:'both',width:'100%'}).appendTo('body'); for(var j=0;j<y;j++){ $('<div>',{id:"X"+i+"_"+j}).css({float:'left',width:10,height:10,border:'2px solid red'}).appendTo(line) } } the question … | |
# #how can use file extension like .txt,.php,.html for the same script. # anybody can help# <?php if ($_POST['variable'] == '') { $variable = './'; // default folder } else { $variable = $_POST['variable'] ; } $folder = $variable; $uploadpath = "$folder/"; $max_size = 2000; $alwidth = 900; $alheight = … | |
I have a horizontal menu: "HOME" "DISCOVER" "STRATEGY MODEL" "PROFILE" "CONTACT US" ![9fa0ee7bb1a4cdc493624e869eba98bc](/attachments/large/2/9fa0ee7bb1a4cdc493624e869eba98bc.jpg "9fa0ee7bb1a4cdc493624e869eba98bc") The "DISCOVER" has a drop-down submen (in green for clarity). The HTML: <ul id="menutop"> <li class="root"> <a class="bullet" href="http://www.clivestacey.co.za/"> <span> HOME </span> </a> </li> <li class="root"> <a href="#" class="daddy"> DISCOVER </a> <ul class="menusub"> <li> <a class="sub_menu" … | |
Hey guys. have a nice day.... can anyone tell me how to achieve something like this slider in background ? I used a full screen slider but can't write content in middle of it like this site http://psnprofiles.com/ | |
**I think this could be put at Web Design part, but maybe the JavaScript is more important** **I am reposting this at Web Design** **I posted it at JavaScript Forum, that was a mistake** Code: <script src="//code.jquery.com/jquery-1.9.1.min.js"></script> <!-- Simple Login Form ** Used with jQuery --> <form id='login'> <input type='text' … | |
Hello, I am trying to scretch right and left my header and footer but as far as now it only scretch right. #navigation {margin: -5px 0 0 10px; min-width: 100%; height: 120px; background-color:#655700; border-radius: 0; position: fixed; z-index:2;} #footer {background: url(images/footer.jpg) repeat-x; background-color:#d08e38; height: 135px; min-width: 100%; position: absolute; margin: … | |
Hi, so i have this list of table seats like table of 6, table of 8 that kind of thing and i have images(width and height:110px) that correspond with those seats but by default they are hidden using `.hide()` and there is also a div(width:880px, height:350px) where these images would … | |
All, I'm wondering if their is a way to use the CSS clip to place my image propational within another image. In this case - I am giving users the ability to upload their own image: As an example - this URL shows the uploaded image: http://www.pinkcloud.com/custom_clock/submit.php?upload_message=image uploaded&upload_message_type=success&show_image=kmo_mikeg.jpg Here are … | |
| Hi I have wordpress problem with banner going under content as you can see here: http://www.djeli.me/di/ZEJ9/slika1.png Code in header: <script type="text/javascript"> var clientWidth = window.screen.width; if(clientWidth >= 800){ document.write('<div id="divAdRight" style="position: absolute; top: 0px; width:100px; height:500px; overflow:hidden;"> <a href="http://yourwebsite.com" target="_blank"><img src="http://www./wp-content/plugins/float-left-right-advertising/rightbanner.jpg" width ="100" alt="" /></a></div><div id="divAdLeft" style="position: absolute; top: 0px; … |
The End.