Search found 4 matches

by novaseer
Sat May 31, 2014 9:35 am
Forum: Tricks 'n' Tips
Topic: getting the page URL
Replies: 2
Views: 5756

Re: getting the page URL

nice
by novaseer
Mon Apr 07, 2014 6:28 am
Forum: Feature Requests and Wishlists
Topic: Server-side database
Replies: 6
Views: 8840

Re: Server-side database

there seem to be a few javascript options for connection to various databases through node.js - I expect it should be reasonably simple to implement with Spiderbasic's inline javascript support.
by novaseer
Mon Mar 31, 2014 5:03 am
Forum: Tricks 'n' Tips
Topic: getting the page URL
Replies: 2
Views: 5756

getting the page URL

Procedure.s getURL()
!return window.location.host;
EndProcedure

Procedure.s getURLpath()
!return window.location.pathname;
EndProcedure

Procedure.s getURLparam()
!return window.location.search;
EndProcedure


if the URL is 'http://www.somesite.com/path/subpath/page.html?parameter1+parameter2 ...
by novaseer
Mon Mar 03, 2014 5:22 am
Forum: Feature Requests and Wishlists
Topic: Multiple Browser Support
Replies: 3
Views: 5796

Multiple Browser Support

Is there any way at the moment to choose which browser SpiderBasic uses to view code?
Perhaps if the IDE detects more than one installed browsers, it can include the option to view in either?