From the category archives:

Web Programming

Integrating Your WordPress Blog with Ingeniux CMS

by Michael Santoroski on June 3, 2010

We have been working on making several updates to our homepage to make it more “social media” aware. We have integrated Facebook, added links to all our social media sites, and made a few other tweaks. Our final step was to add stories from the RC News Blog to the the “Campus News” section of [...]

{ 0 comments }

Helpful jQuery Tricks for Everyday Tasks

by Caleb Pierce on April 5, 2010

1. Toggling a checkbox’s value: $(“:checkbox”).attr(“checked”,$(this).attr(“checked”)); This code simply sets the “checked” attribute of the checkbox to be the opposite of whatever it’s current value is. Good for changing the value of multiple checkboxes at once or changing a checkbox on an action other than the click event. 2. Chaining Event Handlers jQuery’s ability to [...]

{ 1 comment }

RESTful Facebook Connect Development With jQuery

by nrhorvath on March 25, 2010

We recently implemented Facebook Connect using their JavaScript REST API and a little bit of jQuery. Once we authenticated with our API key, we were able to request any information we wanted from a Facebook user’s account. We just performed a simple ajax call and dumped the result into a demo page. Login with JQuery: [...]

{ 0 comments }

Form Validation with jQuery

by Caleb Pierce on March 1, 2010

Because of jQuery’s powerful selector, it’s very easy to write form validation scripts for many different scenarios. We’ll begin by defining a class to add to form elements that can’t be left blank (including check boxes and radio buttons). I’ll use the class “notBlank” in this example. Additionally, we can define other classes such as [...]

{ 0 comments }

jQuery and Mobile Web Development

by Caleb Pierce on February 25, 2010

We use jQuery in most of our web applications for form validation, showing/hiding content, and the like. With the release of our new mobile site, we were faced with a set of challenges specific to mobile applications, and we used jQuery to address a number of them. Heavy Content When developing for the the limited bandwidth [...]

{ 1 comment }

New Maroons Online Mockup

by Michael Santoroski on February 18, 2010

We are hard at work coming up with great new ideas for Maroons Online. Our concept is to make user profiles the centerpiece, and allow users to search and view other Alumni’s profiles. We are also planning to use Facebook Connect for login, so users can post information from Maroons Online back to Facebook. Connections [...]

{ 0 comments }

2010 Mobile Strategy

by Michael Santoroski on February 15, 2010

2010 is going to be a big year for the Roanoke College mobile strategy. Right now we have four initiatives for the year. #1 – New iPhone/Android Home Page Now in “preview” at i.roanoke.edu, our new home page was designed by New City in Blacksburg, Va, who also designed our home page and sports page. [...]

{ 3 comments }

The new Online Admissions Application Wireframes are Here!!

by Michael Santoroski on February 21, 2009

I admit that getting excited about the wireframes for the online application is pretty lame, but our on-line app has been stuck in the stone ages (I mean pre-AJAX days!!) for so long, it’s exciting to see the process more forward for the redesign. We have partnered with our friends at New City Media to [...]

{ 0 comments }

Coldfusion DSN’s – Use the Advanced Tab

by Michael Santoroski on January 7, 2009

To increase the security of your Coldfusion apps, be sure to check the “Show Advanced Settings” button when creating a new DSN. Coldfusion Administration –> Data & Services –> Data Sources. Notice that there is a section called “Allowed SQL” By default, Coldfusion allows all the options (see above). I would suggest that you turn [...]

{ 0 comments }

Plotting Applicants on Google Maps

by Michael Santoroski on December 23, 2008

I have been thinking and playing around with a Google maps mashup where I plot recent applicants as Markers on a Map of the US. So far, what I have is a map that shows the 200 most recent apps: Example: http://www.roanoke.edu/michael/map/applicants.cfm This was made using the Google Maps Tags at RIAforge. I am running [...]

{ 0 comments }