Will asked about adjusting the date php displays to account for the fact that the server may not be in the same location as you. (I don't think this solved his problem with displaying the actual timezone differently – but thought it was worth putting up anyway…) I'm sure there are other ways (if you […]
06 Mar, 2003
Posted by: Jennifer In: Scripts
The idea here is to display an image based on whether a check box is checked or not. It'll toggle it's display, so you can click it on, click it off, etc. (And if you post a comment asking me why anyone would ever want this, I will beat you up. LOL! I needed this […]
06 Mar, 2003
Posted by: promoguy In: Scripts
As many bloggers would agree, one of the things that keeps you going is to know that readers find your posts valuable. But often there are those days when you make a great post with lots of links and you get no comments at all. Did anyone read your posts? Did anyone even click on […]
02 Mar, 2003
Posted by: Jennifer In: Scripts
This partially in response to some modification requests to the smilie launch… This script will launch a new window. If/when it looses it's focus (ie. it's in the background) if the person clicks the link again, rather than launching a *new* window, or appearing to do nothing at all, this will bring the (previously launched) […]
02 Mar, 2003
Posted by: Jennifer In: Scripts
I really liked Girlie's "comment leader board". My only problem was that, I've been blogging for nearly two years. People who commented a lot on my site a year ago, don't neccessarily come by anymore – and there's new people who come by, who comment a lot, and I feel they should be able to […]
To move a browser window to a specific location on the users screen: window.moveTo(x,y); replacing "x,y" with pixel coordinates. More info here, where they also have the below which will give you the users screen width, height: screen.widthscreen.height Also, to resize the browser window: window.resize(width,height) Now, before you go all crazy on me – I'm […]
(non blog related post) Needed to use this php function: strchr (alias to strstr). I had a field that had a person's full name (first and last). 99.999% of the time, the first name and last name were seperated by a space (no Mr. or Mrs. in there) and I needed a script that assumed […]
Comments Off on Get first (part of) name
23 Feb, 2003
Posted by: Jennifer In: Scripts
One of the reasons I had taken smilies off my site was because I didn't like the look of all these smilies on my comment form. Pruning my list of smilies was difficult, but the more smilies I had, the more "messy" the form. Also, with tons and tons of smilies, that meant writing a […]
14 Feb, 2003
Posted by: Jennifer In: Scripts
Jen asked for a bookmarklet (that would work in Safari!) that would let you email a link of the webpage you were on. Here you go: email link to this page (It would be pretty easy to modify this to ask you for the email address you wanted to send it to – but I […]
13 Feb, 2003
Posted by: Jennifer In: Scripts
This is from another script request – Show most recent comments AND how many comments that person has made in total. Sort of a combination of this (Show most recent comments) and Girlie's comment leader script.