Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #2K
~18.1K People Reached
PC Specs
Windows 7 Ultimate 32 Bit / Windows XP MCE AMD Athlon 64 X2 5400 Brisbane 4GB RAM, 500GB HDD NVIDIA…

7 Posted Topics

Member Avatar for PlyrJames791

Hi I'm having a few problems with my Dell PC. Basically, when I turn it on, it boots normally. However, in less than 5 minutes, the two monitors either turn a solid colour or vertical stripes appear, causing the computer to be completely unresponsive (ie ctrl-alt-del does nothing, the keyboard …

Member Avatar for skilly
0
215
Member Avatar for morrisproject

Make sure there isn't any output (even a newline or white space) before the <? bracket. Hope this helps :)

Member Avatar for hakeemtunde
0
129
Member Avatar for cip6791

Put the AJAX command inside a function called startAjax() or whatever, and call this function when the page loads. You can then just type startAjax() within the button's onclick attribute. The javascript section should look like this: [CODE] <script type='text/javascript'> //AJAX function function startAjax() { $.ajax({ type: "POST", url: "test.php", …

Member Avatar for cip6791
1
16K
Member Avatar for rse

I'm not sure, but I don't think javascript likes a dollar sign at the start of a variable name (i.e. $birthday). Also, i'm assuming you're using jquery, so $test.text(chart) should be $('#test').text(chart). Try this: [CODE]var birthday = $('#dob'); $.get("process.php", {birthday: birthday}, function(chart) { $('#test').text(chart); });[/CODE] Hope this helps :)

Member Avatar for rse
0
173
Member Avatar for Ralphael

I would recommend using a library like [URL="http://www.jquery.com"]jQuery[/URL] for AJAX like this. It would reduce what you have to a few lines. :)

Member Avatar for PlyrJames791
0
141
Member Avatar for buzzykerbox

Do you mean change it permanently, or just for the current page? I don't think you can permanently modify another file through javascript. If not, it would just be: [CODE]$("[COLOR="red"]#yourelement[/COLOR]").css("color","[COLOR="red"]newcolor[/COLOR]");[/CODE] Just replace the red stuff with whatever you need. :)

Member Avatar for PlyrJames791
0
49
Member Avatar for PlyrJames791

Hi I'm new to C++ and I'd like to make a program that responds to MIDI input from an external device (e.g. MIDI keyboard). I've found a library that should do what I want here: [URL="http://www.music.mcgill.ca/~gary/rtmidi/index.html"]http://www.music.mcgill.ca/~gary/rtmidi/index.htm[/URL]. I'm using VC++ 2010 Express, and I can't figure out how to actually use …

Member Avatar for kiran_ur_frnd4u
0
1K

The End.