micahwittman

3,208
reputation
94 views

Registered User

name micahwittman
member for 1 year
seen 6 hours ago
website
location CA
age
5h
awarded  Nice Answer
6h
comment [jQuery] $.ajax doesn’t seem to be working
Once you get the $.ajax usage figured out, and based on the check_user.php snippet shown here, I suggest looking at coding to prevent an SQL injection on the PHP request side. SEE Prepared statments stackoverflow.com/questions/60174/… and filtering stackoverflow.com/questions/60174/… All the best.
13h
comment How to calculate sales tax with this script?
You need to beware of the pitfalls of floating point calculations on currency. SEE stackoverflow.com/questions/1144653/…
1d
accepted How to iterate, by month, between two specified dates
1d
comment jQuery and 2 fadeIn in one click
If you want the close button and contact box to animate in exactly the same way, and if the close button tag is inside the contact box div - why not just fade out the contact box (which contains the button)?
1d
comment JQuery tools, overflow images from input box
prodigitalson, it's the little things, isn't it. :)
1d
answered Css tool, to calculate how many (in bytes) inline css in html
1d
answered JQuery tools, overflow images from input box
1d
comment How to iterate, by month, between two specified dates
You're welcome, justinl. Learning how to let the database do the heavy lifting in cases where it's efficient/effective is definitely worth the time to dive deeper.
2d
answered How to iterate, by month, between two specified dates
2d
answered Loading my Greasemonkey script after another GM Script Loads
2d
revised How to calculate sales tax with this script?
indented code-block
2d
comment How often do you need to create a real class hierarchy in your day to day programming?
mother extends progenitor - there, fixed it for you ;) Yes, great point about the of subclassing for its own sake problem out there.
2d
accepted Need the CSS a.tag is not cooperating
2d
comment Need the CSS a.tag is not cooperating
hacker, could be. More details from OP needed.
2d
answered Need the CSS a.tag is not cooperating
2d
revised Using Jquery to add/remove a class based on body Id
added 155 characters in body
2d
comment Using Jquery to add/remove a class based on body Id
Ben, when I looked closer, you had more than one kind of URL pattern happening - some with .php, some just a directory. So here's a better approach that works for all main/top navigation links (SEE bottom of answer again).
2d
accepted Using Jquery to add/remove a class based on body Id
2d
comment Using Jquery to add/remove a class based on body Id
And you son has one fantastic name, btw.
2d
comment Using Jquery to add/remove a class based on body Id
Ben, glad to help. I lived half my life in Langley, though I'm not there now. Give my regards to everyone in the Fraser Valley. :)
2d
comment Using Jquery to add/remove a class based on body Id
The code was firing before the HTML loads. See the bottom of my Answer for the replacement code.
2d
revised Using Jquery to add/remove a class based on body Id
added 402 characters in body
2d
comment Using Jquery to add/remove a class based on body Id
checking your live page...
2d
revised Using Jquery to add/remove a class based on body Id
added 170 characters in body; added 1 characters in body
2d
revised Using Jquery to add/remove a class based on body Id
added 1 characters in body; added 82 characters in body
2d
comment Using Jquery to add/remove a class based on body Id
Ok, I see now. Your footer links work: their links have no leading slash, just "index.php". The header links are like "/index.php". The solution in my answer above ($("a[href$='" + bodyID + ".php']").toggleClass('current-selected');)
2d
comment Using Jquery to add/remove a class based on body Id
looking right now...
2d
comment JQuery Validation with Select and Text Input
Well done, brianpeiris!
2d
answered Using Jquery to add/remove a class based on body Id
2d
comment Using Jquery to add/remove a class based on body Id
+1 Nice and DRY.
2d
comment Best way to add metadata to HTML elements
I used H3, the bold styling was SO's choice :)
2d
answered Use SOUNDEX() word by word on SQL Server
2d
answered JQuery Validation with Select and Text Input
2d
answered Best way to add metadata to HTML elements
2d
answered jQuery syntax issue
2d
comment How to make website unavailable for others while developing it online ?
If you can't do a series of command-line steps to create the basic auth hash, there's an online (javascript-based) .htaccess creator: htaccesseditor.com/en.shtml#a_basic (Careful! the utility doesn't appear to post your data (conventionally or AJAX), but even so you can't be too cautious. Start a private browsing session (Firefox), load page linked above, disable your internet connection, generate the code with it, close page, clear all cookies, leave Private browsing.
2d
accepted Error Getting Jquery Blur to Work on Element
Dec
17
comment JQuery Truncate V2.3 issue
Gecko and Webkit engines don't have a problem, just IE's.
Dec
17
comment JQuery Truncate V2.3 issue
Sorry I missed that link - thanks. I tried the Truncate plugin and sure enough, it's miss-ordering the string concatenation (tested in WinXP IE 7). I even tried another plugin called Truncator which also exhibited strange behaviour - for sure on the longer portion that have <BR><BR> within.
Dec
17
awarded  Citizen Patrol
Dec
17
comment JQuery Truncate V2.3 issue
Beyond the templating code, can you post the actual HTML output (including the relevant javascript)
Dec
17
comment JQuery Truncate V2.3 issue
The documentation for the Truncate plugin 2.3 (released February 11, 2008 reindel.com/truncate/#examples ) says it supports jQuery version [1.2.3] - is that the one you're using?
Dec
17
answered Error Getting Jquery Blur to Work on Element
Dec
17
comment how to parse a page that doesnot show any data in its source code??
developer, your browser contains is a javascript interpreter, which is why you can see the output from the interpreted JS code when using View Source. The cURL library only deals with internet protocol server response data - HTML for example - not the results of the DOM affected by javascript delivered in the http response. You have to programmatically analyze the JS code or run it through an interpreter and analyze the output.
Dec
17
answered how to parse a page that doesnot show any data in its source code??
Dec
17
comment Get all elements in array besides the first one.. ? (php)
Comprehensive - nicely done, Andrew.
Dec
17
answered Php form for registered users in joomla
Dec
17
answered Get all elements in array besides the first one.. ? (php)
Dec
17
comment MySql Performance Question: MD5(value)
Could I ask the nature of the security technique? My first thought was if you are trying to make ID hard to guess (perhaps ID may be a query string parameter) then you're only preventing the simplest attempt - you aren't salting the hash, it appears.