Sharing elements of my website
Hi,
On my webpage I have a simple textbox that will change user inputs using a javascript. I'm basically trying to share my textbox and the js behind it to other ppl so they can use it on their webpage (~API). I know I can share using iFrames, but I was wondering if there are other ways to do it? Like just pointing to an aspx or js file and that will do the trick...
Thanks
Re: Sharing elements of my website
Other options are the following.
HTML5 Object
Code:
<object data="http://www.vbforums.com" width="500" height="400">
<embed src="http://www.vbforums.com" width="500" height="400"> </embed>
Error: Embedded data could not be displayed.
</object>
jQuery.load()
jQuery.load()
Re: Sharing elements of my website