A: 

Three problems:

  1. It is moving you to the top because you have a href="#" change it to href="javascript:void(0)"

  2. http://mikemarks.net/clientSites/js/modal/jquery.simplemodal.js returns 404. Check location

  3. http://mikemarks.net/clientSites/js/modal/basic.js returns 404. Check location

Stewie
A: 

It seems that your webpage lacks of jquery.simplemodal.js and basic.js and the css associated ( for example, for the display:none; on your basic-modal-content )

That's why you don't have any modal on load.

Plus, your link or button doesn't have any event handler (for example, $('.basic').click(...);)

That's why you don't have any other action than the anchor.

To remove the anchor action, I recommand to use event.preventDefault

Chouchenos
Yeah that's weird, because everything was working perfectly when it was hard coded. The "#" anchor is how it is in the raw form, off of the modal example I got off of jQuery's website, and it worked as it is now. Yeah about the lacking of the .js files, my bad, but even when they are included it displays the same behavior.
Mike Marks
I mean it worked as it supposed to with just the "#".
Mike Marks