Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
43% Quality Score
Upvotes Received
3
Posts with Upvotes
3
Upvoting Members
3
Downvotes Received
4
Posts with Downvotes
4
Downvoting Members
4
1 Commented Post
13 Endorsements
Ranked #121

159 Posted Topics

Member Avatar for vizz

my connection to **WebSocket** is getting Disconnected continuously. I'm working in folder `realtime` on `localhost`. How to keep WebSocket connection live? How to use WebSocket in javascript? **Link:** http://localhost/realtime/ <script language="javascript" type="text/javascript"> var myWebSocket = new WebSocket("ws://localhost/realtime"); myWebSocket.onopen = function(evt) { alert("Connection open ..."); }; myWebSocket.onmessage = function(evt) { alert( …

Member Avatar for anthonydaly
0
3K
Member Avatar for shibobo2001

can anyone add this as downloadable file? When I try to copy paste code files doe.n't work properly in wampserver

Member Avatar for Brian_3
0
4K
Member Avatar for vizz

How to flip multiple div when clicked on menus? Current code is working for only last two div's. [code in work on jsfiddle](http://jsfiddle.net/Lucdd/) **HTML** <ul class="nav"> <li><a href="#home">home</a></li> <li><a href="#about">about</a></li> <li><a href="#work">work</a></li> <li><a href="#contact">contact</a></li> </ul> <section class="container"> <div id="card"> <div class="front flipper" id="home">home</div> <div class="back flipper" id="about">about</div> <div class="front flipper" …

Member Avatar for Jad4
1
984
Member Avatar for vizz

I have **NaN** error with following code. I have timer of 10 seconds to reload page. When Page reloads first jquery knob gives NaN value and then starts countdown of 10 seconds. There is problem when seconds are 60. It shows NaN, 0 and then counts from 59. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> …

Member Avatar for ryantroop
0
1K
Member Avatar for vizz

I have function to generate activation key when user creates new account. How to check generated key is not generated in the past for other user **Database fields** username password email activationcode **Function** function random_string($length) { $key = ''; $keys = array_merge(range(0, 9),range('A', 'Z'), range(0, 9), range('a', 'z')); for ($i …

Member Avatar for vizz
0
416
Member Avatar for vizz

I have database 'website' having fields - title, url, snapshot to collect information of websites . Users will fillup the form so, There is no file input for fileupload. Form have inputs for title & url. How to generate snapshot using 'imagegrabwindow' or other php functions for given url? How …

Member Avatar for chrishea
0
160
Member Avatar for vizz

With following code I tried to upload image and video file at the same time but, image file is uploading & video file is not uploading <form class="pure-form pure-form-aligned" action="Processor.php" method="post" enctype="multipart/form-data" > <fieldset> <div class="pure-control-group"> <label for="image">Upload image</label> <input type="file" name="image" class="pure-input-1-4" /> </div> <div class="pure-control-group"> <label for="video">Upload video</label> …

Member Avatar for jj.dcruz
0
1K
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
243
Member Avatar for vizz

I want to read pdf file and store only contents of pdf file as it is into mysql database. Can anybody help ? please ...... Thanks.

Member Avatar for diafol
0
2K
Member Avatar for vizz

I'm using Multiple instances of jQuery.countdown. How to create countdown circles using jQuery Knob. http://jsfiddle.net/qt3rteL5/ http://jsfiddle.net/26ppb5yc/1/ (reload preview frame to see error and result) **jQuery.countdown Multiple instances** <div data-countdown="2016/01/01"></div> <div data-countdown="2017/01/01"></div> <div data-countdown="2018/01/01"></div> <div data-countdown="2019/01/01"></div> **jQuery Knob** <input class="knob days" data-readOnly="true" data-insidelabel="Days" data-width="150" data-angleOffset="180" data-fgColor="#fff" data-skin="tron" data-thickness=".1" value=""> <input class="knob …

Member Avatar for vizz
0
749
Member Avatar for vizz

WebSocket is working well for **ws://echo.websocket.org/** but not working on **localhost** I have working example, where WebSocket works for **ws://echo.websocket.org/** As follows, <!DOCTYPE HTML> <html lang = "en"> <head> <title>WebSocket Test</title> <meta charset = "UTF-8" /> <style type = "text/css"> h1 { text-align: center; } .error { color: red; } …

Member Avatar for imti321
0
2K
Member Avatar for vizz

I want to stop direct access for dynamic url. If someone tries to access next link **http://abc.com/gallery.php?id=1** then redirect to **error404** page Value of **id=1** is dynamic and changes frequently. How to redirect if **id=2** or any other value (0 to **∞**)? **php redirect code** $curPageURL="http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; $url="http://abc.com/gallery.php?id=1"; if($curPageURL == $url) …

Member Avatar for almostbob
0
455
Member Avatar for vizz

How to write .htaccess for following links? Something like home.php/page/about home.php?page=about home.php?page=services home.php?page=events home.php?page=gallery&id=1 **//redirected from home.php?page=events//** home.php?page=contact **home.php** $default = 'default'; $page = isset($_GET['page']) ? $_GET['page'] : $default; if (!file_exists(''.$page.'.php')) { $page = $default; } include(''.$page.'.php'); **e.g** page=about is used to get about.php **include(''.$page.'.php');** this includes **about.php ** for …

Member Avatar for imti321
0
169
Member Avatar for vizz

var mct1_Options = { sliderId: "mcts1", direction: "horizontal", scrollInterval: 1400, scrollDuration: 800, hoverPause: true, autoAdvance: true, scrollByEachThumb: true, circular: true, largeImageSlider: null, inSyncWithLargeImageSlider: true, license: "b2e98" }; var thumbnailSlider = new ThumbnailSlider(mct1_Options); function ThumbnailSlider(f) { var g = "length", i = "className", T = function (a, c) { var b …

Member Avatar for vizz
0
282
Member Avatar for vizz

[CODE]<div id="wrapper"> <div id="header"> <p>This is the Header</p> </div> <div id="navigation"> <p>This is the Navigation</p> <a href="#">Home</a> <a href="#">About</a> <a href="#">Contact</a> </div> <div id="content"> <p>This is the main content</p> </div> <div id="footer"> <p>This is the Footer</p> </div> </div>[/CODE] This is my HTML code. I have menus in navigation div. Content …

Member Avatar for diafol
0
4K
Member Avatar for vizz

I have registered custom TLD like, **.com, .in, .co** I have servers to deal with DNS setting. Now I want to allow people to register their domain under my custom TLD. e.g. abc**.xyz** So I need web registry software to allow registering domains under tld, **`.xyz`** I want to do …

Member Avatar for veedeoo
0
133
Member Avatar for vizz

I have following tables for photo album script. How to display Album title and album cover inside anchor tag? (Display Albums cover on homepage and redirect to gallery page, when clicked, to see images inside that album) * get id of album * get album title * get album cover …

Member Avatar for diafol
0
230
Member Avatar for vizz

I have sidebar color `#fea800;` kindly help with following item colors, * h1,h2,h3,h4,h5,h6 * p * text shadows * box shadow

Member Avatar for diafol
0
147
Member Avatar for vizz

I have `div` with `width:125px; height:125px`. How to create small bars before displaying it? When clicked on `<a href="#">Menu</a>` make transition, like small bars are forming the `div` smoething like http://workshop.rs/projects/jqfancytransitions/

Member Avatar for vizz
0
174
Member Avatar for vizz

How to create responsive layout for following structure? **Requirements** * Float sidebar from right 10% over all div . * Sidebar height 100% * Hidden for below 768px width * Footer stick to bottom * `main` div `overflow-y:scroll auto;` * sidebar contains navigation menus * overflow hidden for body & …

Member Avatar for shophiarajan47
-1
125
Member Avatar for vizz

How to Convert PHP HTTP_REFERER to Null referer How to Convert JS document.referrer to Null referer Forexample site http://www.refnull.com/

Member Avatar for vizz
0
135
Member Avatar for vizz

How to remove Referrer from links? How to use following code to remove Referrer from links? **script** var protected_links = ""; var a_to_va = 0; var a_to_vb = 0; var a_to_vc = ""; function auto_anonymize() { auto_anonyminize(); } function auto_anonyminize() { var a_to_vd = window.location.hostname; if(protected_links != "" && !protected_links.match(a_to_vd)) …

0
174
Member Avatar for vizz

I used following code for hiding **.php** extension but **mail()** function stopped working. What is the problem? RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s([^.]+)\.php [NC] RewriteRule ^ %1 [R,L,NC] RewriteCond %{REQUEST_FILENAME}.php -f RewriteRule ^ %{REQUEST_URI}.php [L] **Mail function & redirect** mail($to,$subject,$message,$headers); header('Location: http://xyz.com/');

Member Avatar for Sikander Nasar
0
305
Member Avatar for vizz

I have following input for accepting mobile number. But I think it will not work world wide. It will work for Indian mobile numbers only.(**e.g.** +910123456789)(+91 country code for India, 0 to 9 mobile number in India) How to make it global using **pattern=" \\+ [] {}"?** I want extension …

Member Avatar for vizz
0
167
Member Avatar for vizz

How to find visitor's exact operatingsystem? How to find visitor's exact computer name? How to find visitor's exact computer user name? getenv('username') is not working. gethostname() is not working to get local machines name

Member Avatar for pritaeas
0
80
Member Avatar for vizz

When mouse is moved in right direction, move follower in left direction, when mouse is moved in bottom direction, move follower in top direction Simply move `#follower` in opposite direction of mouse move events (move fullscreen div) var mouseX = 0, mouseY = 0; $(document).mousemove(function(e){ mouseX = e.pageX; mouseY = …

0
125
Member Avatar for vizz

When mouse is on image display one value from array inside **thought** div's span. Show next value each time. When values ends start with first value [something like this](http://jsfiddle.net/W4fm9/) , but when hover on image var arrValues = [ "one", "two", "three" ]; <img src="images/thinker.png" /> <div class="thought"><span></span></div>

Member Avatar for vizz
0
244
Member Avatar for vizz

How to create infinite loop of Shuffle Text Effect using following code. It stops after animation is finished. How to start again when first loop of animation is completed? <script src="http://code.jquery.com/jquery-1.6.3.min.js"></script> <div id="container">text</div> **main script** /** * @name Shuffle Letters * @author Martin Angelov * @version 1.0 * @url http://tutorialzine.com/2011/09/shuffle-letters-effect-jquery/ …

Member Avatar for ryantroop
0
954
Member Avatar for vizz

I want to create simple css3 effect like gallery effect [here](http://livedemo00.template-help.com/wt_47303/) How to create classess * **.animation{}** * **.scaleDown{}** * **.rotateFoldTop{}** * **.rotateUnfoldBottom{}** when menus are clicked **scale down main wrapper**, after **scale down** is **completed** then only **rotateFoldTop** main page & same time **rotateUnfoldBottom next page** (activeTab). After rotateUnfoldBottom …

0
100
Member Avatar for vizz

I found [this template](http://livedemo00.template-help.com/wt_48221) on template monster. That is what I was working on. How to slide pages about.php, work.php, contact.php directly inside div tag? Dispaly home.php by default **menus used in example template of template monster** <ul> <li><a href="/"><div class='open_hover'></div>gallery</a></li> <li><a href="/about.html"><div class='open_hover'></div>about me</a></li> <li><a href="/experience.html"><div class='open_hover'></div>Experience</a></li> <li><a href="/resume.html"><div …

Member Avatar for vizz
0
154
Member Avatar for vizz

How To Get On The First Page Of Google for keyword ***"website designer"*** How to get free backlinks

Member Avatar for TPW_1
0
511
Member Avatar for vizz

My client is using [this iView slider](http://iprodev.com/iview/index3.html) He wants to make it responsive & fullscreen. He don't want to change slider as he likes transitions of this slider. I'm trying hard but images are not working as responsive. please help (images are 1600 x 1067) <div class="container"> <div id="iview"> <div …

Member Avatar for iamthwee
0
277
Member Avatar for vizz

Following code of animated menu is working well,little bit, but when mouse pointer is over one list element, items inside all other list elements are animated. I want to animate, items inside hovered list element only. if mouse pointer is over **about us**, animate => div items inside **about us** …

Member Avatar for vizz
0
268
Member Avatar for vizz

I changed style of scrollbar in chrome how to make it usable in firefox & IE? #thumbs::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); background-color: #CCCCCC; } #thumbs::-webkit-scrollbar { width: 6px; background-color: #999999; } #thumbs::-webkit-scrollbar-thumb { background-color: #fe003f; border: 1px solid #555555; }

Member Avatar for vizz
0
92
Member Avatar for vizz

I'm using [Page Transitions](http://tympanus.net/Development/PageTransitions/) (get animations.css from tympanus.net) to hide/show div. How to add remove classes. I'm trying to add in-out effects with simple classes. How to *Remove class `current` from current div & add outgoing class to same div* and *add class `current` & incoming class to next div*? …

Member Avatar for vizz
0
368
Member Avatar for vizz

I'm using [this](http://www.menucool.com/slider/javascript-image-slider-demo2) Image Slider with Thumbnails.(http://www.menucool.com/slider/javascript-image-slider-demo2) I tried to make it fullscreen with floating Thumbnails but it is not working properly. Can anyone help me to make it responsive & fullscreen with floating thumbnails?

Member Avatar for vizz
0
197
Member Avatar for vizz

How to follow and unfollow users? With following code, list of users appears. containing link to action.php If not following anyone goto action.php to follow that user from list or if following then show link for unfollow How to check from table **following** **condition check:** if ($following) { <a href='action.php?id=$uid&do=unfollow'>unfollow</a>"; …

Member Avatar for pritaeas
0
222
Member Avatar for vizz

How to Surf the websites anonymously in Windows XP without using tor? I found various softwares when googled for **hide IP address** But all are not working properly. Is there any guaranteed software?

Member Avatar for rubberman
0
2K
Member Avatar for vizz

I have six number sets. Each have two digit number which range between 01 to 49. How to create all possible combinations? And how to calculate total number of possible combinations? e.g 1. Number set:- **A B C D E F** 2. Lower Limit:- **01 01 01 01 01 01** …

Member Avatar for diafol
0
355
Member Avatar for vizz

windows xp was crashed, so after formatting & installation of windows I installed (overwrite of all existing files) **XAMPP** which was on different drive, other than **C:\**. As it was not lost when windows was crashed, I just overwrite the all files, this had happened with me lot of time …

Member Avatar for drjohn
0
243
Member Avatar for vizz

I want to take Admission for Web Design Certificate program in USA or New Zealand Can anyone tell which **Institute** is good to apply? And what are requirements to go to USA from India? I'm **Bachelor of Computer Application** with **62%** marks. I have worked with local firms and as …

Member Avatar for stultuske
0
199
Member Avatar for vizz

I have following code, for which I want to use CSS3 Page Transitions. I found tutorial here, http://tympanus.net/codrops/2013/05/07/a-collection-of-page-transitions/ How to use different Page Transitions? <ul id="nav"> <li><a href="#home" class="home">Home</a></li> <li><a href="#about" class="about">About</a></li> <li><a href="#works" class="works">Works</a></li> <li><a href="#contact" class="contact">Contact</a></li> </ul> <div id="home"><h1>Home</h1></div> <div id="about"><h1>About</h1></div> <div id="works"><h1>Works</h1></div> <div id="contact"><h1>Contact</h1></div>

Member Avatar for vizz
0
129
Member Avatar for vizz

I have some IP list and 10 links stored in mysql. How to visit all links automatically in browser with assigning IP from database? After 10 links visited, how to change IP again i.e. (1 IP for 10 links) I want to use javascript to redirect to new page after …

Member Avatar for harry247
0
794
Member Avatar for vizz

I have altered and little simplified this tutorial **[CSS-ONLY RESPONSIVE LAYOUT WITH SMOOTH TRANSITIONS](http://tympanus.net/codrops/2012/06/12/css-only-responsive-layout-with-smooth-transitions)**. But it is not working properly. Here, radio buttons are used as menus. When I try to put them inside **<div></div>** it stops smooth scrolling. * I want to put radio buttons(menus) inside **navigation** div and …

Member Avatar for LastMitch
0
145
Member Avatar for vizz

How to create website like, [URL="http://www.paktvlive.com/"]http://www.paktvlive.com/[/URL] [URL="http://www.freetv-watch.com/"]http://www.freetv-watch.com/[/URL]

Member Avatar for joopdoop1
0
122
Member Avatar for vizz

I'm using media queries. my code is not working for following resolution. **240 x 320 (small phone) 320 x 480 (iPhone)** I want to add this #wrapper { width: 100%;} #column1 { width: 100%;} #column2 { width: 100%;} What about meta tag? (I'm using this `<meta name="viewport" content="initial-scale=1.0, width=device-width"/>`)

Member Avatar for vizz
0
317
Member Avatar for vizz

I have listed some hosting services. Can you please help me to choose better one? 1. http://www.justhost.com 2. http://www.bluehost.com 3. http://www.jaguarpc.com 4. http://www.znetlive.in 5. http://www.bigrock.in And of course [GoDaddy](http://in.godaddy.com) My needs are 1. Unlimited Space 2. Unlimited Bandwidth 3. Unlimited Email Addresses with Unlimited Email Storage size 4. Unlimited Domains …

Member Avatar for LilyMims
0
321
Member Avatar for vizz

I'm using **[Ascensor.js](http://kirkas.ch/ascensor)**. I need to detect which div section is visible in window to add animation effects to elements inside that visible div. For following code, <div id="ascensorBuilding"> <section> //floor one content here </section> </div> I'm using my code, <div id="wrapper"> <div class="section about" id="about"> </div> <div class="section home" …

Member Avatar for imBaCodes
0
509
Member Avatar for vizz

How to null and/or alter the value of **referring URL?** I'm using **Google Analytics** and other some **Analytics** services. I found they are tracking **Referral URL.** So I want to hide **Referral URL** from **Traffic Analysis Tools** (e.g.:- modify **$_SERVER["HTTP_REFERER"];** value to facebook.com on localhost) **index.php** <a href="get_referer.php"> Click Here</a> …

Member Avatar for vizz
0
2K
Member Avatar for vizz

I have received many enquiries to **develope website using php/mysql or wordpress** which can earn **daily $25-$35 USD**, atleast **minimum $15 USD daily.** How is it possible? For which **AdSense** gives money, **displaying ads or clicks on ads** How to create such **revenue generating website?**

Member Avatar for James_Smith
0
128

The End.