Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #2K
~18.8K People Reached
Favorite Tags
Member Avatar for samsons17

Hi all.. I just done a website using HTML,CSS and PHP. For now,my website is only fine to be displayed in Mozilla and IE.. For IE(Internet Explorer), I just fix the css by doing another CSS layout for that. like this one : [CODE] <!--[if IE 7]> <link rel="stylesheet" type="text/css" …

Member Avatar for shaddam
0
1K
Member Avatar for george61

Hi all I've created simple javscript gallery using previous and next links. The problem is that I want fade effect between images like this: [url]http://tobia.github.com/CrossSlide/[/url] I've pasted few lines of jquery code in my javascript functions but the fade effects aren't the same. Any help will be greatly appreciated. Best …

Member Avatar for Mukund_1
0
1K
Member Avatar for ambikanair

hi.. currently i am working on a webpage designing project. I have to include CAPTCHA in my webpage. My doubt is , usually in text boxes , users will be able to get already entered values by just pressing the arrow key. In the case of CAPTCHA this must be …

Member Avatar for pandup
0
156
Member Avatar for george61

Ok I made hover effect for group of five images-appearing border. But when I'm hovering the image some other two images are moving few pixels downward. [CODE]<div class="rel"> <img src="images/4wheel2.jpg" height="85" id="on"/> <img src="images/4wheel2.jpg" height="85" id="on"/> <img src="images/4wheel2.jpg" height="85" id="on"/> <img src="images/4wheel2.jpg" height="85" id="on"/> <img src="images/4wheel2.jpg" height="85" id="on"/> </div> <div …

Member Avatar for mpb2053
0
4K
Member Avatar for laghaterohan

Hello, I show a form in the modal pop up which has several drop down lists in it. The problem is that if i select nething from the drop down list then my selected index change event fires and my form gets refresh..how to overcome this problem?? Can we use …

Member Avatar for riteshsoniarya
0
109
Member Avatar for george61

This problem is about passing parameters between functions(define neighbour elements and acess these elements) Here is some HTML [CODE] <ul class="listing"> <li><a href="imgs/eli.jpg" id="1" class="lightbox" onclick="defineNeighbours(this.id);"><img src="thumbs/eli_t.jpg" width="150" height="100" class="images" /></a></li> <li><a href="imgs/ggallin.jpg" id="2" class="lightbox" onclick="defineNeighbours(this.id);"><img src="thumbs/ggallin_t.jpg" width="150" height="100" class="images" /></a></li> <li><a href="imgs/jontarata.jpg" id="3" class="lightbox" onclick="defineNeighbours(this.id);"><img src="thumbs/jontarata_t.jpg" width="150" height="100" class="images" …

Member Avatar for Airshow
0
146
Member Avatar for george61

Just a little problem with functions for previous and next images in a lightbox type of gallery created by me. The src of a given image is taken form href attribute of a link. I need the src of the next or previous image to be loaded dynamically maybe using …

0
93
Member Avatar for george61

My idea is to create a gallery in which the thumbnails have rounded corners. This works in every browser except IE because it won't support CSS3. Is there any hack for creating rounded corners for thumbnails in IE? Of course I'm not sure my HTML/CSS is good enough so take …

Member Avatar for Anahit
0
207
Member Avatar for george61

Here is code for hexagonal and pentagonal numbers. I need type that stores something bigger than 10 billion. Double works fine to about 8.4 billion. Of course I tried using long long and unsigned long long but it's still not working. Please repair this code because it overflows now matter …

Member Avatar for iammirko
0
360
Member Avatar for george61

In the following problem I have to find the number > 40755 which is triangular,pentagonal and hexagonal. The formulas for these type of numbers are given below. As I read every hexagonal number is also triangular so we have to compare pentagonal with hexagonal numbers. This algorithm gives 9 digit …

Member Avatar for george61
0
865
Member Avatar for george61

It is a very interesting question about downloading flash files embeded in Video JS from HTML 5 standart. Here we have 2 flash pages. 1: [url]http://resursi.e-edu.bg/content/math3/runtime/rtleo/scorm-flo.html?sco=../../content/uc_m5_l008.flo&width=788&height=553&recording=true[/url] 2.[url]http://resursi.e-edu.bg/content/s1/runtime/rtleo/scorm-flo.html?sco=../../content/uc_s3_l093.flo&width=788&height=553&recording=true[/url] As you see we have different id's uc_m5_1008 and uc_s3_1093; Interestingly we have .flo format?! and video js in a script file. Also …

0
83
Member Avatar for george61

In these problem I have to find triangular number by the number of it's divisors. The program takes about 0.65 seconds to find the first triangular number with >100 divisors and about 87 seconds for the number with >200 divisors which means that my algorithm is very inefficient. Any help …

Member Avatar for Momerath
0
519
Member Avatar for george61

This is a fragment of a program for finding palindrome numbers.Every checked number is a string which is reversed...and I'm using array of strings which isn't done right. Any help will be greatly appreciated. [CODE]#include <stdio.h> #include <string.h> void isPalindrome(char *str1[],int l){ int str1size = strlen(str1[l]); int n; int misMatch …

Member Avatar for b56r1
0
108
Member Avatar for george61

This is a program for getting the sum of prime numbers of given range. The problem is that it would take hours if the limit is about 1000000. I've read about the sieve of Eratosten but having difficulties with implementing it. Could someone help to make this piece of code …

Member Avatar for WaltP
0
326
Member Avatar for george61
Member Avatar for george61

There is a working code about a program in which you should create differen Cat objects with name and color parameter and apply method to the objects. The problem is that I get the method working for only the last cat [CODE]public class Cats { public static String name; public …

Member Avatar for masijade
0
227
Member Avatar for george61

Here is a PHP code that writes a string on the bottom of a given image. I want to have the image with the string on it to be saved in a folder. The problem is that this script copies the image without the stamped text. Here is the code: …

Member Avatar for pritaeas
0
166
Member Avatar for george61

I'm working on an entertainment site and there is some design mistake which I made. But everything looks good if zoomed out in 83% on chrome and 75% on mozilla and IE. What is the solution to resize everything or there is another way?

Member Avatar for Kraai
0
101
Member Avatar for george61

Ok I created some flash rotator-onclick event to change swf files. But this won't work in IE because the javascript isn't able to create a closing embed tag. Here is the script: [CODE]<script type="text/javascript"> var flashNumber = 0; var items = 3; var i = 0; films = new Array(items) …

Member Avatar for Airshow
0
167
Member Avatar for george61

Ok if you visit [url]http://www.miniclip.com[/url] you'll notice that there is some kind of flash rotator on the home page. This is my code attempt to move between preloaded swf animations using javascript. I've tried giving id of the object or embed but this won't help. Of course this is not …

Member Avatar for george61
0
146
Member Avatar for george61

I need javascript to trigger the combination of ctrl + minus. Is it possible. I need this because the design of the webpage I'm working on is looking much better at 83 % zoom which couldn't be achieved by CSS zoom property in mozzila firefox.

Member Avatar for Taywin
0
206
Member Avatar for george61

Hi guys I've stumbled upon a really annoying problem in positioning 4 oval boxes(containers) (in 2 rows). In FF and Chrome it looks exactly how I want but in IE the boxes align about 50px left. If I give margin or padding left no matter of the values it shifts …

Member Avatar for inplainsite
0
134
Member Avatar for george61

This is some PHP search code with some mistake. $run gives nothing where $run = mysql_query($construct); It gives: Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\xampp\search\search2.php on line 39 No results found. [CODE]<?php //get data $button = $_GET['submit']; $search = $_GET['search']; if(!$button) echo "You didn't submit …

Member Avatar for george61
0
180
Member Avatar for george61

Hi all. I'm ccentering a searchbox in a container and there are some differences between mozzila and IE. I used the following:[CODE] <!--[if IE]> <style>#menu{ height: 3px;} .navigate{padding-left: 35px;} .text{ padding-left: 55px;} .form{ margin-top: -55px;} </style> <![endif]--> [/CODE] the changes for .navigate and #menu are sucessfull but nothing changes about …

Member Avatar for macgurl70
0
147
Member Avatar for keltoid

Hi all -- I need to put a table w/ 4 cells (across) to display recommended/suggested items. I want them to all be random each time someone visits or refreshes, I will have a current pool of about a dozen images to be pulled from.. I have found the code …

Member Avatar for Airshow
0
199
Member Avatar for george61

Hi all. I'm working on an entertainment site and I need some script for displaying random flash game. I want the following: the user is playing some game and when he clicks on a dice icon the game dissappears and new game appears on the same place because I don't …

0
78
Member Avatar for george61

Ok I have a linked list which have to read from binary file and to write in binary files. This is the function about the reading from keyboard: [CODE]short readElement( Node * newE) { int b,e,m; if ( newE == NULL ) return 1; do { printf("\n Registration number:"); scanf("%s", …

Member Avatar for prvnkmr449
0
3K
Member Avatar for brown23

Hey Guys, I'm really stuck on how I can have the visitor change the style of the content on my webpage. I've looked into stylesheet switcher, but that changes a whole stylesheet, when really all I want users to be able to change is their preferred background color, alignment, font …

Member Avatar for george61
0
110
Member Avatar for pwgmac

Hi all, Sorry if this is a common thread. I did a search but couldn't find a solution I was looking for... You know the popup that appears if you're not logged in about joining Daniweb, I need to put together one very similar for a forum I'm working on. …

Member Avatar for george61
0
118
Member Avatar for george61

Hi all. I've tried to make a simple hover effect about small images but it won't work. I also tried to make the following script: 2 seconds after page loading image1 changes 2 seconds after that image1 returns to back state and image2 changes and etc. Can someone help? Best …

Member Avatar for hielo
0
174