6,557 Topics

Member Avatar for
Member Avatar for vegaseat

Here we use the eval() function as the backbone of a simple calculator. One table is used for the display. A second table holds the buttons for the keypad. The whole thing forms an attractive looking calculator. To test it, simply paste the code into an editor like notepad and …

Member Avatar for diafol
1
2K
Member Avatar for elvi.1221

Hello! Im trying to put some icons in my html codes but no result. no icons. im tyring it to do like that: <span class="icon-home"></span>

Member Avatar for pixelsoul
0
66
Member Avatar for Tinnin

Hi All, I'm trying to remove the <head> tag and contents from some html but I'm having no luck. The <head> portion of the html is: <head><meta http-equiv=Content-Type content="text/html; charset=utf-8"><meta name=Generator content="Microsoft Word 15 (filtered medium)"><!--[if !mso]><style>v\:* {behavior:url(#default#VML);} o\:* {behavior:url(#default#VML);} w\:* {behavior:url(#default#VML);} .shape {behavior:url(#default#VML);} </style><![endif]--><title>Resume (Origin design)</title><style><!-- /* Font Definitions …

Member Avatar for diafol
0
261
Member Avatar for Anuj877

I am using the Html2pdf(dompdf) library for codeigniter,Its working fine but i cannot get images in pdf files. this is the url where i download the library. https://www.google.co.in/url?sa=t&rct=j&q=&esrc=s&source=web&cd=2&cad=rja&uact=8&ved=0CCgQFjAB&url=https%3A%2F%2Fgithub.com%2Faiwmedia%2FHTML2PDF-CI&ei=wijjVID8GIqWuATqnYBY&usg=AFQjCNFGnkCMd1t5K55fApAyeca4dCE-mQ&sig2=-ix5k0Vhj81f6BkzIY5pPQ&bvm=bv.85970519,d.c2E

Member Avatar for cereal
0
2K
Member Avatar for Riteman

I have used .net's webbrowser control. Unfortunately, it is not supporting HTML5 or Complete JavaScript. When I googled, many said that the control depends on IE version installed in the machine. I have installed IE10. Though it supports HTML5 (Even I checked the same webpage in IE10 and it worked), …

Member Avatar for iamthwee
0
979
Member Avatar for kalcio

Hi, I'am newer in PHP development.I have a question please,Is there any way to create a web application with AngularJS, HTML5, and CSS3 as front end, and NodeJS as back end ,and PHP5 as a the restful web service? thanks for Help

0
225
Member Avatar for Priti_P

Hello, Am new in angularjs. I want to restrict user from inserting HTML tags in textarea by using ng-pattern in blade.php, i had written `{{ Form::textarea('localAddress', null, ['size' => '35x4',"ng-pattern"=>'(.*?)<.*?>(.*?)','name'=>'local_address','ng-model' => 'employee.employee_personal_details.local_address','required'=>true]) }}}` but < brackets are giving me angular js error `{{ Form::textarea('localAddress', null, ['size' => '35x4',"ng-pattern"=>'<("[^"]*?"|'[^']*?'|[^'">])*>','name'=>'local_address','ng-model' => 'employee.employee_personal_details.local_address','required'=>true]) …

Member Avatar for diafol
0
228
Member Avatar for stevenson.nelli
Member Avatar for subbu_1

'HTML' form <form action="result.php" method="POST"> <input type="search" name="query" size="10" id="searchfield" title="searchfield" /> <input type="submit" name="Search" value="" alt="Search" id="searchbutton" title="Search" /> </form> result php file <?php @session_start(); include 'connections.php'; if (isset($_POST['query']) && $_POST['query'] != "") $query = $_POST['query']; $min_length = 1; if(strlen($query) >= $min_length) { $query = htmlspecialchars($query); $query = mysql_real_escape_string($query); …

Member Avatar for subbu_1
0
526
Member Avatar for punith_1

Hi.. I’m trying to create circular menu bar,but my menu bar is nearly similar to tympanus circular menu bar(visit [Click Here](http://tympanus.net/Tutorials/CircularNavigation/index2.html)) but in tympanus if we want menubar we must click open/menu button I want menu bar(fixed) to be display without any any clicking and instead of button i need …

0
147
Member Avatar for santunu23

HI i am trying to work with a html5 canvas for signature capture i got script and try to get the signature with ajax and php function saveit() { var myDrawing=document.getElementById("newSignature"); var drawingString=myDrawing.ToDataUrl("image/png"); var postData="canvas="+drawingString; var ajax=new XMLHttpRequest(); ajax.open("POST",'saveimage.php',true); ajax.setRequestHeader('Content-Type','canvas/upload'); ajax.onreadystatechange=function() { if(ajax.readyState==4) {alert("image saved"); } ajax.send(postData); } and here …

0
91
Member Avatar for lovewithweb
Member Avatar for pixelsoul
0
67
Member Avatar for ankit.baphna

Hi, I want to create list of items on my header to which if selected sends that value to my Div class where my search code is there as input to it. I have seen href works for pointing to.php with id value as parameter. but what is syntax for …

Member Avatar for pixelsoul
0
255
Member Avatar for cristian.stilpeanu.1_1

Hi guys, someone please help me with a problem, i search alot to google how to hide my ending of my url page and can't find nothing.. ex: www.url.com/file.html what i want it's: www.url.com/file how i can do this? please help me, ty.

Member Avatar for NerdFreak
0
308
Member Avatar for janicemurby

hya all im following a tutorial and i got the following code of which im getting the following error Parse error: syntax error, unexpected T_WHILE in /home/letsswin/public_html/TESTFILES/blog/index.php on line 36 can anyone tell me what is causing this <?php //connect to the database include('includes/db_connect.php'); $query = $db->prepare("SELECT post_id, title, LEFT(body, …

Member Avatar for janicemurby
0
862
Member Avatar for [NOPE]FOREVER

I have an enquiry form where once the user click the submit button the form mailhandler.php and sends the email to myself. I have tried doing this through php but its not fully working as I do not recieve any emails. Here is my mail handler.php <?php if(isset($_POST['buttonSubmit'])){ $to = …

Member Avatar for imti321
7
496
Member Avatar for Phaelax

Doing a custom file upload button like so: CSS: input[type="file"]::-webkit-file-upload-button{ visibility:hidden;width:0;height:0;} input[type="file"]{font-size:30px !important;background:none !important;} input[type="file"]::before{ content: 'Select an image'; display: inline-block; background: -webkit-linear-gradient(top, #f9f9f9, #e3e3e3); border: 1px solid #999; border-radius: 3px; outline: none; white-space: nowrap; -webkit-user-select: none; cursor: pointer; text-shadow: 1px 1px #fff; font-size: 40px; margin:auto auto; text-align:center; line-height:80px; width:624px; …

Member Avatar for pixelsoul
0
231
Member Avatar for emaus9

index.html file <form id="form" method="post" action="formdata.php" enctype="text/plain" autocomplete="on" target="_blank"> <!-- onsubmit="return confirm('Your request have been submitted. Thank You.')" onsubmit="this.submit(); this.reset(); return false;">--> <fieldset> <legend>Get a FREE Quote</legend> <label for="flname">First and Last name:</label><input type="text" name="flname" autofocus placeholder="Please type your first and last name." size="40" required /><br> <!-- <label for="lname">Last name: </label><input …

Member Avatar for emaus9
0
193
Member Avatar for vizz

With my following code how to create simple filter using only CSS? li items have opacity 0.1, how to make opacity 1 if radio buttons are checked? By default *All Type* radio button is checked, so all li items must have opacity 1. When other buttons are checked, how to …

Member Avatar for Phaelax
0
242
Member Avatar for nadiam

Hello. The scenario is a div and in the div are multiple cloned images, its like a floor plan thing and I would like to save that into the database and i guess i would have to convert it into a pdf or something to do so. That pdf would …

Member Avatar for diafol
0
516
Member Avatar for gretty

Hello I am new to Java & I am trying to find ways(in built Java objects/ways) to parse HTML. Can you suggest some objects in the Java Standard Library? I have extended the object HTMLEditorKit.ParserCallback but when parsing a web pages' source code it literally takes 2 minutes or more! …

Member Avatar for olupotd
0
198
Member Avatar for Simon_4

I have the problem, and I tried allready a lot, as i like to center my navigation, center to my site. The main issue is, that I work with amazon's sellercentral, Amazon Webstore. And I can't show the site in public, and maybe there other things, don't let me center …

Member Avatar for Simon_4
0
338
Member Avatar for Priti_P

Hello, Am new in CSS I have form like below code. <div> <span class="lable"> Practice Name<span class="PreRequired">*</span></span> <input type="text" name="practiceName" ng-model="practiceData.practiceName" style="width:20.5%;" required ng-pattern="/^([a-zA-Z]+\s*)*[a-zA-Z]+$/" placeholder="Practice Name"/> <span ng-show="SubmitPractice.practiceName.$error.pattern"> Please enter valid Practice Name </span> </div> <div> <span class="lable"> Practice Head<span class="PreRequired">*</span></span> <select ng-model="practiceData.practiceHead" style="width:20.5%;" required="required" ng-options="em.gslab_id as em.employee_name for em …

Member Avatar for hericles
0
176
Member Avatar for samson.oba.77

Hi! I want to put a html file into another html file . I tried iframe and object tag, which works but the problem is i also get scrolling frames. How can i insert a html file into another html file as it is without anything added to it like …

Member Avatar for samson.oba.77
0
23K
Member Avatar for rakesvyas44

There had to be a line drawn somewhere, and now it's here: W3C passes HTML5 to the staus, as it calls it, "recommendation." The World Wide Web Consortium (W3C) published a Recommendation of HTML5, the fifth major revision of the format used to build Web pages and applications, and the …

Member Avatar for 86fallen#2019!
-2
76
Member Avatar for PsychicTide

Dajia hao, daniwebians! Just a quick question, is it possible to focus on a textbox on an externally loaded website? My goal is to load an external website, focus on a textfield, auto fill it with the current date, then submit it to then run my newly created scraper tool …

Member Avatar for PsychicTide
0
2K
Member Avatar for janicemurby

hya all i am trying to resize i logo image but its not working i can double width but not to width of page i have been in head.css and layout.css see below for css for section header.css /* Logotype */ #logo-box { position: absolute; top: 9px; left: 0; width: …

Member Avatar for pixelsoul
0
102
Member Avatar for janicemurby

hya all i wonder if someone can help me in trying to make the text are in my website transparent so the image in the background can be seen in text area here is the css i have for that section /*----------------------------*/ /* 2.3 - Navigation - Level 1 */ …

Member Avatar for happygeek
0
191
Member Avatar for coder91

Hi, so for my .net project I've to use HTML/CSS provided by another colleague. Ive copied this into the site master page in .net but it doesn't appear in the child pages, anyone have any ideas how I can fix this. The code is: <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head id="Head1" …

Member Avatar for coder91
0
312
Member Avatar for juniper.root

I understand its usually a header has been already sent type scenario but I'm starting to lose it. I have no idea how to sniff out where I mucked up in my code. I tried using a print sub routine that prints both to stdout and to a file. I …

Member Avatar for 2teez
0
229

The End.