No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
15 Posted Topics
try this [CODE]if (targetfocus == 'login_username'){ alert(readCookie('login_username')); if (readCookie('login_username') == 'username'){ targetfocus = 'password'; } } $("#"+targetfocus).focus(); function readCookie(name) { alert('HAHA NIKLAS KAN INTE JAVASCRIPT'); var cookieName = name + "="; var cookieArray = document.cookie.split(';'); for (var i = 0; i < cookieArray.length; i++){ var cookie = cookieArray[i]; while (cookie.charAt(0)==' …
Start here. http://thenewboston.org/list.php?cat=6
Hey, Im trying to implement a search in the action bar in my android app. Ive got the serachView to show and Im able to write in it. But when I press enter to make it submit the request should just open my SearchActivity were I should just be able …
Hi, why does the two functions factorial and factorial2 only return the right factorial if the input is 12 or less ? [CODE=c] #include "iostream" using namespace std; int factorial(int n){ if (n==0){ return 1; } else{ return n*factorial(n-1); } } int factorial2 ( int x ) { int p …
Hello Im going to make a program that is much like a calender. I havent started coding anything yet because I would like some advice on how to make the program "alive". - I wont it to be able to start up automatically when windows starts. - Run in the …
I would start over. Try make a general library with things you need like a database class, its great practice and will help speed up future projects.
Hey!! I'm going to try to learn RoR but before i start to do that I'm going to try to learn some Ruby for a better understanding on how RoR is working. I have Java and C++ experience so object oriented programming is nothing new. Ive found many useful tutorials …
Hi! If i understand your problem right this link tell you when you need :D [url]http://php.net/manual/en/function.htmlspecialchars.php[/url]
Hey I have div that is editable and I need to know when the div is in focus and when its leaving focus. how do I do it?
Hey guys I have a small problem and i hope you can help. Basicly am going to make an search script to my website. Im going to use onkeyup event when the user is writing and my problem is that I wont to make a function that takes in input …
Hey im building a site and i need to learn a bit more about security, ajax, php everything. I know basic stuff but I havent read anything about it so plz share some links or experience plz ! For example am I going to use a ajaxlogin, anything I really …
Hey i need some help, ive done a javascript that will create a small popup when the user a link, just like the one on this forum when u touch a thread and you can read a small part of it. this is the code and my problem is that …
Hey Im going to make an ajaxlogin for my website but ive ran into a problem with the jquery submit() funktion. If i put my login form in the body of the index and use $('form').submit() it works perfect but. when I have the login form in another php page …
Hey I need some help with my java game Im making. I wont to have an menu with 4 options, startgame, highscore, option and quit. They quit button is easy I just setVisible(false) but when i click on the other buttons I wont to remove the buttons and include new …
Hey Ive been trying to make a login script using ajax, the thing is I cant get the php script am calling with ajax to set session variables. Is it even possible? Should I use Cookies becouse I know I can set them with javascript or should I just skip …
The End.
Philip435