How to make a webpage with multiple pages appear as one continuous page - web

Hi I am frequenter of ilfehacker.com.au and many other sites who constantly put content I want on ten pages instead of one easy to read long page.
Is there any way to tell the site to show me all the pages one after the other in one continuous long page?
I was thinking a greesemonkey script maybe or some addon?
Many Thanks, Josh.

No, because there can only be 1 page per tab. You can write a firefox addon script that will detect whether you have scrolled to the bottom and than focus the browser on the the next tab and vice versa.

Related

Insert code into the head of every page on the website using Dreamweaver

I have a website that has over 100 separate pages. Somehow in my ignorance I removed some code from the head of each page that controls the responsive behavior. I need to reinsert that code in every page, but I can't figure out a way to do that with all pages at once.
I'm using Dreamweaver CS4 (I know, ancient). Is there a way to insert a line of code into every page?

Any browser plugins for customizing web pages intelligently?

I generally use firebug to remove unwanted divs and tags and resize stuff on the web-page .. frequently for gaming sites like chessbomb. But this is tedious, and every time tab reloads, i would have to do it all over again.
So is there any plugin which would remember the setting for particular site and apply it on the load itself. For starters i just need something to remove div tags based on names. If it can resize too then thats all the more useful.
Thanks.
You can use Adblock Plus with some CSS selector usage to do this. Look at the doc related to this here.
For example, you could probably use something like
domain.com##div.class
to hide those divs.
This is a use case for the greasemonkey firefox plugin. You'll need to know a little javascript, but if you're doing these sorts of things in Firebug, I would assume you won't find greasemonkey too dofficult.
Have a look at http://www.greasespot.net/ and http://userscripts.org/ and you may even find someone has already written the script you're after.
To quote wikipedia on Greasemonkey:
Greasemonkey is a Mozilla Firefox extension that allows users to install scripts that make on-the-fly changes to HTML web page content on the DOMContentLoaded event, which happens immediately after it is loaded in the browser (also known as augmented browsing).
As Greasemonkey scripts are persistent, the changes made to the web pages are executed every time the page is opened, making them effectively permanent for the user running the script.

Creat a website counter on dreamweaver cs5

Hello I use dreamweaver cs5 on my website designer it is very good.
But one thing I wanted to kow was how do i create a counter that counts all the different computer id that look at the page.
I have seen loads of ones you can embed but all of them have links to other sites.
If anyone could help it would be ver appreiated
A quick google search shows that there is many different options out there. Try searching for "hitcounters". The one that stands out to me is: http://www.e-zeeinternet.com/. That one shows a visible image showing the number of hits. If you want to have that is not visable or shows more info try http://www.google.com/analytics/. You will just need to fill out some information and then embed the code into the page (at the location you want). They are simple to setup

Custom navigation with Liknlist web part

I'm using a standard link list web part. What I want to achieve is before my users click on the link a pop-up javascript warning box will display, stating that they are leaving the domain. In regular anchor tag I would preceed the URL with javascript:ShowWarning('http://www.youtube.com');.
I've search the AllLinks table in the database but did not find the links was looking for.
Where or how are these stored?
Thanks,
Risho
Firstly, editing the SharePoint database directly is a really bad idea. You shouldn't do it unless you really, really know what you are doing, and even then you will probably break the system.
Secondly, any change made in the data will be what shows up in the editor, and I don't think the editor supports links that don't start with "http://".
A better approach is to use jquery to add the popup behaviour to the links when the page is loaded.

showing content on the blank screen after downloading a file

I've observed that under certain circumstances, a web browser will navigate to a blank page and then prompt the user to download a file. In my current situation, it's navigating to a URL that generates an Excel file. The download of the file works perfectly, but the user is now stranded on a blank page. There are two things I would like to figure out:
What causes the blank page to be displayed? It doesn't happen all the time. Is it the difference between using GET and POST (I can't recall seeing a hyperlink do it, but forms usually do)? Is it something to do with the Content-Disposition? In my current case, I've set the Content-Disposition to be "inline" because I want it to display in the browser in IE. Firefox (and presumably others) will of course prompt to download because they can't display it inline. It is the situation where the user chooses to save it that the blank screen results.
If it is possible, I'd like to display some content on this blank screen to provide the user with a message like "your file has been generated, click here to go back to the main screen" or somesuch. Is there a way I can do that?
I'm using an IIS extension written in C++, so solutions for ASP, PHP, etc will not be helpful unless they're generally applicable (though I wouldn't mind learning about solutions in those languages!). Thanks.
I think you practically answered your own question: setting content-disposition to inline does exactly that. One solution that comes to mind is browser detection: use inline disposition if the browser is IE, attachment otherwise.
BTW, as a user, I prefer sites which offer me a choice whether I want to download the file or view it inside the browser (when, for example, accessing a PDF file). In this case, I would consider having a link/button for downloading the file, and adding a second link/button for IE browsers to view it.

Resources